/* ========================================
   MOBILE MENU STYLES
   ======================================== */

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 90%;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f8f5ff 100%);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(107, 33, 168, 0.1);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.mobile-menu-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    color: var(--dark);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.mobile-nav-link i {
    width: 24px;
    text-align: center;
    color: var(--primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: linear-gradient(90deg, rgba(107, 33, 168, 0.08) 0%, transparent 100%);
    border-left-color: var(--primary);
    color: var(--primary);
    padding-left: 2rem;
}

.mobile-nav-link:hover i {
    transform: scale(1.2);
    color: var(--secondary);
}

/* Mobile Menu Trust Badges */
.mobile-menu-trust {
    padding: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(107, 33, 168, 0.1);
    background: rgba(107, 33, 168, 0.02);
}

.mobile-trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: var(--gray);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.mobile-trust-item:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.mobile-trust-item i {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 3px 10px rgba(107, 33, 168, 0.3);
}

/* Nav Actions (Cart & User) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-left: 1rem;
}

.nav-action-btn {
    width: 42px;
    height: 42px;
    background: transparent;
    border: 2px solid rgba(107, 33, 168, 0.2);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.nav-action-btn:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(107, 33, 168, 0.3);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

/* ========================================
   CART SIDEBAR STYLES
   ======================================== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 95%;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #faf8fd 100%);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(107, 33, 168, 0.1);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin: 0;
}

.cart-close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-empty {
    text-align: center;
    color: var(--gray);
    padding: 3rem 1rem;
    font-style: italic;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    animation: fadeInUp 0.4s ease;
}

.cart-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

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

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-name {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    background: var(--light);
    border: 1px solid rgba(107, 33, 168, 0.2);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: var(--primary);
    color: white;
    border-color: transparent;
}

.cart-item-quantity span {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 0.3rem;
    transition: all 0.2s ease;
}

.cart-item-remove:hover {
    color: #ef4444;
    transform: scale(1.1);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(107, 33, 168, 0.1);
    background: white;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(107, 33, 168, 0.2);
}

.cart-total span:first-child {
    font-weight: 600;
    color: var(--gray);
}

.cart-total span:last-child {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 33, 168, 0.4);
}

.btn-continue {
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-continue:hover {
    background: var(--primary);
    color: white;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   AUTH MODAL STYLES
   ======================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    max-width: 480px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-xl);
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: var(--light);
    border: none;
    border-radius: 50%;
    color: var(--gray);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #ef4444;
    color: white;
    transform: rotate(90deg);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--light);
    padding-bottom: 0.5rem;
}

.auth-tab {
    flex: 1;
    padding: 0.8rem;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.auth-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: all 0.3s ease;
}

.auth-tab.active {
    color: var(--primary);
}

.auth-tab.active::after {
    width: 100%;
}

.auth-tab:hover:not(.active) {
    color: var(--primary);
}

/* Auth Forms */
.auth-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.auth-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.auth-form input {
    width: 100%;
    padding: 1rem;
    background: var(--light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(107, 33, 168, 0.1);
}

.auth-form label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--gray);
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 0.3rem;
}

.auth-form input:focus + label,
.auth-form input:not(:placeholder-shown) + label {
    top: -0.5rem;
    font-size: 0.8rem;
    color: var(--primary);
    background: white;
}

.btn-auth {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 33, 168, 0.4);
}

.auth-switch {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.auth-switch a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-switch a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.hidden {
    display: none !important;
}

/* ========================================
   PRODUCT MODAL STYLES
   ======================================== */
.product-modal-content {
    max-width: 900px;
    padding: 0;
    overflow: hidden;
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.product-modal-image {
    height: 100%;
    min-height: 400px;
}

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

.product-modal-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.product-modal-info h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.product-modal-price {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.product-modal-description {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-olfactory-notes h4,
.product-size-selection h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.notes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.note-tag {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.1) 0%, rgba(107, 33, 168, 0.05) 100%);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(107, 33, 168, 0.2);
}

.size-options {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.size-btn {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid var(--light);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.size-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(107, 33, 168, 0.3);
}

.product-modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.btn-add-cart {
    flex: 1;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 33, 168, 0.4);
}

.btn-wishlist {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #ef4444;
    border-radius: var(--radius-md);
    color: #ef4444;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-wishlist:hover {
    background: #ef4444;
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   TRUST BADGES
   ======================================== */
.trust-badges {
    background: linear-gradient(135deg, var(--light) 0%, white 100%);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(107, 33, 168, 0.1);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.trust-badge i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(107, 33, 168, 0.3);
}

.trust-badge h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.trust-badge p {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
}

/* ========================================
   DELIVERY CALCULATOR
   ======================================== */
.delivery-calculator {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.delivery-calculator::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: deliveryGlow 6s ease-in-out infinite;
}

@keyframes deliveryGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

.delivery-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.delivery-content > i {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.delivery-content > div {
    flex: 1;
}

.delivery-content h4 {
    font-family: var(--font-display);
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.delivery-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.delivery-form {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.delivery-form select {
    padding: 0.8rem 1.2rem;
    background: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--dark);
    cursor: pointer;
    min-width: 200px;
}

.delivery-form select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.btn-delivery {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--dark);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-delivery:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.delivery-result {
    width: 100%;
    margin-top: 1rem;
    display: none;
}

.delivery-result.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.delivery-result h5 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.delivery-result p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
}

.delivery-result.free h5 {
    color: #10b981;
}

.delivery-result.paid h5 {
    color: var(--secondary);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-modal-body {
        grid-template-columns: 1fr;
    }
    
    .product-modal-image {
        min-height: 250px;
    }
    
    .delivery-content {
        flex-direction: column;
        text-align: center;
    }
    
    .delivery-form {
        width: 100%;
        flex-direction: column;
    }
    
    .delivery-form select,
    .btn-delivery {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-action-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    .cart-count {
        min-width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }
    
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-badge {
        padding: 0.8rem;
    }
    
    .trust-badge i {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .trust-badge h4 {
        font-size: 0.9rem;
    }
    
    .trust-badge p {
        font-size: 0.75rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .auth-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .product-modal-info {
        padding: 1.5rem;
    }
    
    .product-modal-info h2 {
        font-size: 1.4rem;
    }
    
    .product-modal-price {
        font-size: 1.4rem;
    }
    
    .size-options {
        flex-wrap: wrap;
    }
    
    .size-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        max-width: 100%;
        right: -100%;
    }
    
    .cart-sidebar {
        width: 100%;
        max-width: 100%;
        right: -100%;
    }
    
    .mobile-menu-header {
        padding: 1rem;
    }
    
    .mobile-menu-title {
        font-size: 1.3rem;
    }
    
    .mobile-nav-link {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .mobile-nav-link i {
        font-size: 1rem;
    }
    
    .cart-item {
        padding: 0.8rem;
    }
    
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    
    .cart-item-name {
        font-size: 0.9rem;
    }
    
    .cart-footer {
        padding: 1rem;
    }
    
    .cart-total span:last-child {
        font-size: 1.2rem;
    }
}
