/* Cart Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fffe;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header Styles */
.header {
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(11, 61, 44, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Cardo', serif;
}

.logo a span {
    color: #333333;
    font-size: 24px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.logo-svg {
    height: 2rem;
    width: auto;
    margin-right: 8px;
    transition: filter 0.3s ease;
}

.logo a:hover .logo-svg {
    filter: brightness(1.2);
}

.logo a:hover span {
    color: #666666;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #4B6043;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FF99C8;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown a i {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown:hover a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 1rem 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #4B6043;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #FF99C8;
    border-left-color: #FF99C8;
    padding-left: 2rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    text-decoration: none;
    color: #fff;
    background: #4B6043;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cart-icon.active,
.cart-icon:hover {
    background: #7EA371;
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #F36F23;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

.login-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    transition: color 0.3s ease;
}

.login-btn:hover {
    color: #4B6043;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 18px;
    color: #333;
    cursor: pointer;
}

/* Breadcrumb */
.breadcrumb {
    background: #fff;
    margin-top: 70px;
    padding: 30px 0;
    border-bottom: 1px solid #E8F4F8;
}

.breadcrumb-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #4B6043;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #7EA371;
}

.breadcrumb-wrapper h1 {
    font-family: 'Cardo', serif;
    font-size: 2.2rem;
    color: #0B3D2C;
    margin: 0;
}

/* Cart Section */
.cart-section {
    padding: 50px 0 80px;
    min-height: 70vh;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 100px 20px;
}

.empty-cart-content {
    max-width: 500px;
    margin: 0 auto;
}

.empty-cart-icon {
    font-size: 5rem;
    color: #C3CEAF;
    margin-bottom: 30px;
}

.empty-cart h2 {
    font-family: 'Cardo', serif;
    font-size: 2.5rem;
    color: #0B3D2C;
    margin-bottom: 15px;
}

.empty-cart p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.shop-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4B6043 0%, #7EA371 100%);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.shop-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(75, 96, 67, 0.3);
}

/* Cart Content */
.cart-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
}

.cart-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Cart Items */
.cart-items {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(11, 61, 44, 0.1);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E8F4F8;
}

.cart-header h2 {
    font-family: 'Cardo', serif;
    font-size: 1.8rem;
    color: #0B3D2C;
}

.clear-cart-btn {
    background: none;
    border: 2px solid #F36F23;
    color: #F36F23;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.clear-cart-btn:hover {
    background: #F36F23;
    color: white;
}

/* Cart Item */
.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #E8F4F8;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details h3 {
    font-size: 1.1rem;
    color: #0B3D2C;
    margin-bottom: 5px;
}

.item-details p {
    color: #666;
    font-size: 0.9rem;
}

.item-price {
    font-weight: 600;
    font-size: 1.1rem;
    color: #4B6043;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fffe;
    border-radius: 25px;
    padding: 5px;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: #4B6043;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #7EA371;
    transform: scale(1.1);
}

.quantity-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
}

.item-total {
    font-weight: 700;
    font-size: 1.2rem;
    color: #0B3D2C;
}

.remove-item {
    background: none;
    border: none;
    color: #F36F23;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.remove-item:hover {
    color: #d9531e;
    transform: scale(1.2);
}

/* Shipping Section */
.shipping-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(11, 61, 44, 0.1);
}

.shipping-section h3 {
    font-family: 'Cardo', serif;
    font-size: 1.5rem;
    color: #0B3D2C;
    margin-bottom: 25px;
}

.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shipping-option {
    border: 2px solid #E8F4F8;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shipping-option:hover {
    border-color: #4B6043;
}

.shipping-option input:checked + .option-content {
    border-color: #4B6043;
}

.shipping-option input {
    display: none;
}

.option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.option-name {
    font-weight: 600;
    color: #0B3D2C;
}

.option-desc {
    font-size: 0.9rem;
    color: #666;
}

.option-price {
    font-weight: 600;
    color: #4B6043;
    font-size: 1.1rem;
}

/* Coupon Section */
.coupon-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(11, 61, 44, 0.1);
}

.coupon-section h3 {
    font-family: 'Cardo', serif;
    font-size: 1.5rem;
    color: #0B3D2C;
    margin-bottom: 25px;
}

.coupon-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.coupon-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #E8F4F8;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.coupon-form input:focus {
    outline: none;
    border-color: #4B6043;
}

.apply-coupon-btn {
    background: #4B6043;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.apply-coupon-btn:hover {
    background: #7EA371;
    transform: translateY(-2px);
}

.applied-coupons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.applied-coupon {
    background: #E8F4F8;
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coupon-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.coupon-code {
    font-weight: 600;
    color: #4B6043;
    font-size: 0.9rem;
}

.coupon-discount {
    font-size: 0.8rem;
    color: #666;
}

.remove-coupon {
    background: none;
    border: none;
    color: #F36F23;
    cursor: pointer;
    font-size: 1rem;
}

/* Order Summary */
.order-summary {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.summary-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(11, 61, 44, 0.1);
    margin-bottom: 30px;
}

.summary-card h3 {
    font-family: 'Cardo', serif;
    font-size: 1.8rem;
    color: #0B3D2C;
    margin-bottom: 25px;
    text-align: center;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

.summary-row span:last-child {
    font-weight: 600;
}

.discount-row {
    color: #F36F23;
}

.total-row {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0B3D2C;
    padding-top: 20px;
    border-top: 2px solid #E8F4F8;
}

.summary-divider {
    height: 1px;
    background: #E8F4F8;
    margin: 20px 0;
}

.summary-note {
    background: #E8F4F8;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    font-size: 0.9rem;
    color: #666;
}

.summary-note i {
    color: #4B6043;
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.continue-shopping {
    background: none;
    border: 2px solid #4B6043;
    color: #4B6043;
    padding: 15px 25px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
}

.continue-shopping:hover {
    background: #4B6043;
    color: white;
}

.checkout-btn {
    background: linear-gradient(135deg, #4B6043 0%, #7EA371 100%);
    color: white;
    border: none;
    padding: 18px 25px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(75, 96, 67, 0.3);
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trust-badge {
    background: white;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 15px rgba(11, 61, 44, 0.1);
    font-size: 0.9rem;
}

.trust-badge i {
    color: #4B6043;
    font-size: 1.2rem;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E8F4F8;
}

.modal-header h3 {
    font-family: 'Cardo', serif;
    font-size: 1.8rem;
    color: #0B3D2C;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

/* Checkout Form */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.form-section {
    border-bottom: 1px solid #E8F4F8;
    padding-bottom: 30px;
}

.form-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.form-section h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    color: #0B3D2C;
    margin-bottom: 20px;
}

.form-section h4 i {
    color: #4B6043;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: #0B3D2C;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #E8F4F8;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4B6043;
}

.form-group textarea {
    height: 80px;
    resize: vertical;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-method {
    border: 2px solid #E8F4F8;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #4B6043;
}

.payment-method input:checked + .method-content {
    border-color: #4B6043;
}

.payment-method input {
    display: none;
}

.method-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.method-content i {
    font-size: 1.5rem;
    color: #4B6043;
}

.method-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.method-name {
    font-weight: 600;
    color: #0B3D2C;
}

.method-desc {
    font-size: 0.9rem;
    color: #666;
}

/* Modal Order Summary */
.modal-order-summary {
    background: #f8fffe;
    padding: 20px;
    border-radius: 12px;
}

.modal-order-summary .summary-row {
    margin-bottom: 10px;
}

.modal-order-summary .total {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0B3D2C;
    padding-top: 15px;
    border-top: 1px solid #E8F4F8;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.cancel-btn {
    background: none;
    border: 2px solid #ccc;
    color: #666;
    padding: 15px 30px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    border-color: #999;
    color: #333;
}

.place-order-btn {
    background: linear-gradient(135deg, #4B6043 0%, #7EA371 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.place-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(75, 96, 67, 0.3);
}

/* Success Modal */
.success-modal {
    text-align: center;
    max-width: 600px;
}

.success-content {
    padding: 20px;
}

.success-icon {
    font-size: 4rem;
    color: #7EA371;
    margin-bottom: 20px;
}

.success-modal h3 {
    font-family: 'Cardo', serif;
    font-size: 2rem;
    color: #0B3D2C;
    margin-bottom: 15px;
}

.success-modal p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.order-info {
    background: #f8fffe;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.continue-shopping-btn,
.track-order-btn {
    padding: 15px 25px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    border: none;
}

.continue-shopping-btn {
    background: none;
    border: 2px solid #4B6043;
    color: #4B6043;
}

.continue-shopping-btn:hover {
    background: #4B6043;
    color: white;
}

.track-order-btn {
    background: #4B6043;
    color: white;
}

.track-order-btn:hover {
    background: #7EA371;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 3000;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4B6043;
    padding: 20px;
    min-width: 300px;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.error {
    border-left-color: #F36F23;
}

.notification.success {
    border-left-color: #7EA371;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-icon {
    font-size: 1.2rem;
}

.notification.success .notification-icon:before {
    content: '\2713';
    color: #7EA371;
}

.notification.error .notification-icon:before {
    content: '\26A0';
    color: #F36F23;
}

.notification-message {
    flex: 1;
    color: #333;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
}

/* Recommended Products */
.recommended-products {
    background: white;
    padding: 80px 0;
}

.recommended-products h2 {
    font-family: 'Cardo', serif;
    font-size: 2.5rem;
    color: #0B3D2C;
    text-align: center;
    margin-bottom: 50px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 61, 44, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(11, 61, 44, 0.15);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.2rem;
    color: #0B3D2C;
    margin-bottom: 10px;
}

.product-info .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4B6043;
    margin-bottom: 20px;
}

.add-to-cart-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #4B6043;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.product-card:hover .add-to-cart-btn {
    opacity: 1;
    transform: scale(1);
}

.add-to-cart-btn:hover {
    background: #4B6043;
    color: white;
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #0B3D2C;
    color: white;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Cardo', serif;
    margin-bottom: 20px;
}

.footer-logo i {
    color: #7EA371;
}

.footer-section p {
    margin-bottom: 25px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #7EA371;
    transform: translateY(-2px);
}

.footer-section h4 {
    color: #7EA371;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #7EA371;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    color: #7EA371;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.payment-methods i {
    font-size: 1.5rem;
    color: #7EA371;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .cart-content {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }

    .cart-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .order-summary {
        position: static;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .cart-item {
        grid-template-columns: 80px 1fr auto;
        gap: 15px;
    }

    .item-image {
        width: 80px;
        height: 80px;
    }

    .quantity-controls {
        grid-column: 1 / -1;
        justify-self: start;
        margin-top: 15px;
    }

    .item-total {
        grid-column: 1 / -1;
        justify-self: end;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .breadcrumb-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .breadcrumb-wrapper h1 {
        font-size: 1.8rem;
    }

    .cart-main {
        gap: 30px;
    }

    .cart-items,
    .shipping-section,
    .coupon-section {
        padding: 25px;
    }

    .summary-card {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .form-actions {
        flex-direction: column;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .notification {
        right: 20px;
        left: 20px;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .cart-items,
    .shipping-section,
    .coupon-section {
        padding: 20px;
    }

    .summary-card {
        padding: 20px;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .item-image {
        width: 100%;
        height: 200px;
    }

    .coupon-form {
        flex-direction: column;
    }

    .checkout-actions {
        gap: 10px;
    }

    .success-actions {
        flex-direction: column;
    }
}