* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --accent: #f39c12;
    --text: #333;
    --text-light: #666;
    --bg: #fff;
    --bg-light: #f8f9fa;
    --border: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}

/* Navbar - QuickCart Style */
.navbar {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-top {
    background: #722F37;
    color: white;
    padding: 10px 0;
    font-size: 13px;
    text-align: center;
    overflow: hidden;
}

.nav-top-content {
    display: flex;
    gap: 40px;
    animation: scroll-left 20s linear infinite;
    white-space: nowrap;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.nav-top span {
    display: inline-flex;
    align-items: center;
    gap: 40px;
}

.nav-top .dot {
    color: #fff;
    opacity: 0.7;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

/* Left Navigation */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 10;
}

.nav-links > a.nav-link {
    position: relative;
    z-index: 15;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #722F37;
}

.nav-link.active {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.nav-link svg {
    width: 10px;
    height: 10px;
    transition: transform 0.3s;
}

/* Shop Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown:hover .nav-link svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: #fff;
    min-width: 200px;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-top: 2px solid #722F37;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Bridge element to prevent gap issues */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 25px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    color: #722F37;
    background: #f9f5f5;
}

/* Center Logo */
.logo {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: 400;
    color: #722F37;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
    letter-spacing: 1px;
}

.logo-icon {
    color: #722F37;
    font-size: 12px;
    vertical-align: super;
    margin-left: 2px;
}

/* Right Side */
.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.currency-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.currency-selector svg {
    width: 10px;
    height: 10px;
    transition: transform 0.3s;
}

.currency-selector:hover svg {
    transform: rotate(180deg);
}

.currency-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 200px;
    padding: 10px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-top: 2px solid #722F37;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

.currency-selector:hover .currency-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.currency-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

.currency-option:hover {
    background: #faf8f7;
    color: #722F37;
}

.currency-option.active {
    background: #faf8f7;
    color: #722F37;
    font-weight: 500;
}

.currency-option .flag {
    font-size: 18px;
}

.currency-option .currency-info {
    display: flex;
    flex-direction: column;
}

.currency-option .country-name {
    font-size: 13px;
}

.currency-option .currency-code {
    font-size: 11px;
    color: #999;
}

.currency-option.active .currency-code {
    color: #722F37;
}

.nav-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: color 0.2s;
}

.nav-icon-btn:hover {
    color: #722F37;
}

.nav-icon-btn svg {
    width: 22px;
    height: 22px;
}

.cart-btn-new {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #722F37;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

.search-bar {
    display: none;
}

.search-btn {
    display: none;
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icon {
    position: relative;
    cursor: pointer;
    font-size: 22px;
    color: var(--primary);
    transition: color 0.3s;
}

.nav-icon:hover {
    color: var(--secondary);
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #34495e;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background: #c0392b;
}

/* Category Menu */
.category-menu {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.category-list {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
    list-style: none;
    overflow-x: auto;
}

.category-list li {
    padding: 15px 0;
    white-space: nowrap;
}

.category-list a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.category-list a:hover {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 50px;
}

.hero-slide {
    display: none;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide.active {
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6), transparent);
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.hero-dot.active {
    background: white;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section */
.section {
    margin: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--primary);
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
}

/* Product Grid - 5-6 products per row */
.product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

@media (max-width: 1400px) {
    .product-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.product-card {
    background: var(--bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px var(--shadow);
}

.product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: var(--bg-light);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--secondary);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.product-wishlist {
    position: absolute;
    top: 8px;
    right: 8px;
    background: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.product-wishlist:hover {
    background: #722F37;
    transform: scale(1.1);
}

.product-wishlist:hover svg {
    stroke: white;
}

.product-wishlist.active {
    background: #722F37;
}

.product-wishlist.active svg {
    stroke: white;
    fill: white;
}

.product-wishlist svg {
    width: 14px;
    height: 14px;
    stroke: #722F37;
    stroke-width: 2;
    fill: none;
    transition: all 0.3s;
}

.wishlist-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #722F37;
    color: white;
    font-size: 10px;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.product-info {
    padding: 10px 12px 12px;
}

.product-category {
    color: var(--text-light);
    font-size: 10px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.product-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.price-current {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.price-old {
    font-size: 11px;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
}

.stars {
    color: var(--accent);
}

/* Category Cards */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.category-card {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.category-card:hover {
    transform: scale(1.02);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.category-overlay h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

/* Footer - QuickCart Style */
.footer {
    background: #f5f0eb;
    color: #333;
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr 0.8fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.footer-logo {
    font-family: 'Georgia', serif;
    font-size: 28px;
    color: #722F37;
    margin-bottom: 15px;
}

.footer-logo span {
    font-size: 10px;
    vertical-align: super;
}

.footer-section p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #722F37;
}

.subscribe-text {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.subscribe-form {
    display: flex;
    gap: 0;
}

.subscribe-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-right: none;
    font-size: 14px;
    outline: none;
}

.subscribe-form input:focus {
    border-color: #722F37;
}

.subscribe-form button {
    background: #722F37;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.subscribe-form button:hover {
    background: #5a252c;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #722F37;
}

.payment-section {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #ddd;
}

.payment-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.payment-icons img {
    height: 30px;
    border-radius: 4px;
}

.payment-icon {
    background: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    color: #333;
}

.footer-bottom {
    background: #722F37;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 13px;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

/* Shop Page */
.shop-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    margin-top: 30px;
}

.filters {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.filter-option input {
    cursor: pointer;
}

.price-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-range input {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 5px;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.sort-dropdown {
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: white;
    cursor: pointer;
}

/* Product Details */
.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 40px 0;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-light);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail {
    aspect-ratio: 1;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details-info h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--primary);
}

.product-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.option-group {
    margin-bottom: 25px;
}

.option-group h4 {
    margin-bottom: 10px;
    color: var(--text);
}

.option-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.option-btn {
    padding: 10px 20px;
    border: 2px solid var(--border);
    background: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.option-btn:hover,
.option-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.qty-btn:hover {
    background: var(--primary);
    color: white;
}

.qty-input {
    width: 60px;
    text-align: center;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 16px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-large {
    flex: 1;
    padding: 15px;
    font-size: 16px;
}

.product-description {
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

.product-description h3 {
    margin-bottom: 15px;
}

/* Cart Page */
.cart-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin: 40px 0;
}

.cart-items {
    background: var(--bg);
    border-radius: 10px;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 5px;
    overflow: hidden;
    background: var(--bg-light);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.cart-item-details p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 3px;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.item-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.remove-btn {
    background: none;
    border: none;
    color: var(--secondary);
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
}

.cart-summary {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.summary-row:last-child {
    border-bottom: none;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

/* Checkout Page */
.checkout-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin: 40px 0;
}

.checkout-form {
    background: var(--bg);
    padding: 30px;
    border-radius: 10px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h2 {
    margin-bottom: 20px;
    color: var(--primary);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group.error input,
.form-group.error select {
    border-color: var(--secondary);
}

.error-message {
    color: var(--secondary);
    font-size: 13px;
    margin-top: 5px;
}

/* Auth Pages */
.auth-container {
    max-width: 500px;
    margin: 60px auto;
    padding: 40px;
    background: var(--bg);
    border-radius: 10px;
    box-shadow: 0 2px 20px var(--shadow);
}

.auth-container h1 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary);
}

.auth-divider {
    text-align: center;
    margin: 20px 0;
    color: var(--text-light);
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-link {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
}

.auth-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #333;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

.mobile-menu-close {
    display: none;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
    background: #722F37;
}

.mobile-nav-logo {
    font-family: 'Georgia', serif;
    font-size: 24px;
    color: #fff;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav-links {
    padding: 15px 0;
}

.mobile-nav-links a {
    display: block;
    padding: 15px 25px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
}

.mobile-nav-links a:hover {
    background: #faf8f7;
    color: #722F37;
}

.mobile-dropdown {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 25px;
    background: none;
    border: none;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
}

.mobile-dropdown-toggle svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s;
}

.mobile-dropdown-toggle.active svg {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    background: #f9f9f9;
    padding: 10px 0;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-menu a {
    padding: 12px 40px;
    font-size: 14px;
    border-bottom: none;
}

.mobile-nav-footer {
    padding: 20px;
    border-top: 1px solid #e5e5e5;
    margin-top: auto;
}

.mobile-currency-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 15px;
    background: #fff;
}

/* Page Specific Styles */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS - COMPREHENSIVE MOBILE DESIGN
   ===================================================== */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .nav-container {
        padding: 18px 25px;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }

    .footer-section:nth-child(4),
    .footer-section:nth-child(5) {
        grid-column: span 1;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-link {
        font-size: 14px;
    }

    .logo {
        font-size: 26px;
    }

    .shop-container,
    .product-details,
    .cart-container,
    .checkout-container {
        grid-template-columns: 1fr;
    }

    .filters {
        position: static;
        margin-bottom: 20px;
    }

    .cart-summary {
        position: static;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-container {
        padding: 0 25px;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Tablets and Large Phones */
@media (max-width: 768px) {
    /* Navbar Mobile */
    .nav-container {
        grid-template-columns: auto 1fr auto;
        padding: 12px 15px;
        gap: 10px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        order: -1;
    }

    .mobile-nav {
        display: block;
    }

    .logo {
        font-size: 22px;
        text-align: center;
    }

    .nav-right {
        gap: 12px;
    }

    .currency-selector {
        display: none;
    }

    .nav-icon-btn svg {
        width: 20px;
        height: 20px;
    }

    .nav-top {
        font-size: 11px;
        padding: 8px 0;
    }

    /* Hero Section */
    .hero {
        height: 350px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-content .btn {
        padding: 12px 25px;
        font-size: 13px;
    }

    /* Sections */
    .section {
        margin: 50px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 14px;
    }

    /* Products */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-info {
        padding: 12px;
    }

    .product-title {
        font-size: 14px;
    }

    .price-current {
        font-size: 16px;
    }

    .price-old {
        font-size: 13px;
    }

    .product-wishlist {
        width: 30px;
        height: 30px;
    }

    .product-wishlist svg {
        width: 14px;
        height: 14px;
    }

    .product-badge {
        padding: 4px 8px;
        font-size: 10px;
    }

    /* Categories */
    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .category-card {
        height: 200px;
    }

    .category-overlay {
        padding: 20px;
    }

    .category-overlay h3 {
        font-size: 18px;
    }

    /* Product Details */
    .product-details {
        gap: 30px;
        margin: 25px 0;
    }

    .product-details-info h1 {
        font-size: 24px;
    }

    .product-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    .option-buttons {
        gap: 8px;
    }

    .option-btn {
        padding: 8px 15px;
        font-size: 13px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .thumbnail-images {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    /* Cart */
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
        padding: 15px;
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
    }

    .cart-item-details h3 {
        font-size: 15px;
    }

    .cart-item-details p {
        font-size: 12px;
    }

    .cart-item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .item-price {
        font-size: 16px;
    }

    .cart-summary {
        padding: 20px;
    }

    /* Checkout */
    .checkout-form {
        padding: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-section {
        margin-bottom: 25px;
    }

    .form-section h2 {
        font-size: 18px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 0;
        margin-top: 50px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-section:first-child {
        grid-column: 1;
    }

    .footer-section h3 {
        margin-bottom: 15px;
    }

    .footer-logo {
        font-size: 24px;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-form input {
        border: 1px solid #ddd;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .subscribe-form button {
        border-radius: 5px;
        width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    .payment-icons {
        flex-wrap: wrap;
    }

    /* Auth Pages */
    .auth-container {
        margin: 30px 15px;
        padding: 25px 20px;
    }

    .auth-container h1 {
        font-size: 24px;
    }

    /* Filters Sidebar */
    .filters {
        padding: 15px;
    }

    .filter-group h3 {
        font-size: 16px;
    }

    .shop-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .sort-dropdown {
        width: 100%;
    }
}

/* Mobile Phones */
@media (max-width: 576px) {
    .nav-container {
        padding: 10px 12px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-right {
        gap: 8px;
    }

    .nav-icon-btn {
        padding: 3px;
    }

    .nav-icon-btn svg {
        width: 18px;
        height: 18px;
    }

    .cart-badge,
    .wishlist-badge {
        width: 14px;
        height: 14px;
        font-size: 9px;
    }

    /* Hero */
    .hero {
        height: 280px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 13px;
        max-width: 100%;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }

    /* Products */
    .product-grid {
        gap: 10px;
    }

    .product-info {
        padding: 10px;
    }

    .product-category {
        font-size: 11px;
    }

    .product-title {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .product-price {
        gap: 6px;
        margin-bottom: 8px;
    }

    .price-current {
        font-size: 14px;
    }

    .price-old {
        font-size: 12px;
    }

    .product-rating {
        font-size: 12px;
    }

    /* Categories */
    .category-card {
        height: 160px;
    }

    .category-overlay {
        padding: 15px;
    }

    .category-overlay h3 {
        font-size: 16px;
    }

    .category-overlay p {
        font-size: 12px;
    }

    /* Sections */
    .section {
        margin: 35px 0;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .container {
        padding: 0 12px;
    }

    /* Product Details */
    .product-details {
        margin: 20px 0;
        gap: 20px;
    }

    .product-details-info h1 {
        font-size: 20px;
    }

    .quantity-selector {
        gap: 10px;
    }

    .qty-btn {
        width: 35px;
        height: 35px;
    }

    .qty-input {
        width: 50px;
        padding: 8px;
    }

    /* Cart */
    .cart-item {
        grid-template-columns: 70px 1fr;
        gap: 10px;
        padding: 12px;
    }

    .cart-item-image {
        width: 70px;
        height: 70px;
    }

    .cart-item-details h3 {
        font-size: 14px;
    }

    .cart-summary {
        padding: 15px;
    }

    .cart-summary h2 {
        font-size: 18px;
    }

    /* Footer */
    .footer-section ul li {
        margin-bottom: 10px;
    }

    .payment-section {
        padding: 20px 0;
    }

    .payment-section h4 {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 11px;
        padding: 12px;
    }
}

/* Extra Small Phones */
@media (max-width: 400px) {
    .nav-container {
        padding: 8px 10px;
    }

    .logo {
        font-size: 18px;
    }

    .nav-right {
        gap: 6px;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .hero {
        height: 240px;
    }

    .hero-content h1 {
        font-size: 18px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .hero-content .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .section-header h2 {
        font-size: 18px;
    }

    .category-grid {
        gap: 10px;
    }

    .category-card {
        height: 140px;
    }

    .auth-container {
        margin: 20px 10px;
        padding: 20px 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 13px;
    }

    .btn {
        padding: 10px 15px;
        font-size: 13px;
    }
}

/* Landscape Mode Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 250px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .mobile-nav {
        height: 100vh;
        overflow-y: auto;
    }
}

/* =====================================================
   MY ACCOUNT PAGE STYLES
   ===================================================== */

/* Account Container */
.account-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: calc(100vh - 200px);
}

/* Account Sidebar */
.account-sidebar {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.account-user-info {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.account-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #722F37 0%, #a64d55 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    overflow: hidden;
}

.account-avatar svg {
    width: 40px;
    height: 40px;
    color: white;
}

.account-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-user-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.account-user-info p {
    font-size: 14px;
    color: #666;
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.account-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 14px;
}

.account-nav-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.account-nav-item:hover {
    background: #faf8f7;
    color: #722F37;
}

.account-nav-item.active {
    background: #722F37;
    color: white;
}

.account-nav-item.logout-btn {
    margin-top: 20px;
    color: #e74c3c;
}

.account-nav-item.logout-btn:hover {
    background: #fdf2f2;
}

/* Account Content */
.account-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.account-section {
    display: none;
}

.account-section.active {
    display: block;
}

.section-header-account {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.section-header-account h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

.section-header-account p {
    font-size: 14px;
    color: #666;
}

/* Profile Section */
.profile-form-container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
}

.profile-picture-section {
    text-align: center;
}

.profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #722F37 0%, #a64d55 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    overflow: hidden;
}

.profile-picture svg {
    width: 60px;
    height: 60px;
    color: white;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-form {
    max-width: 600px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.profile-form .form-group {
    margin-bottom: 0;
}

.profile-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.profile-form .form-group input,
.profile-form .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.profile-form .form-group input:focus,
.profile-form .form-group select:focus {
    outline: none;
    border-color: #722F37;
}

/* Orders Section */
.orders-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.order-filter-btn {
    padding: 8px 20px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}

.order-filter-btn:hover {
    border-color: #722F37;
    color: #722F37;
}

.order-filter-btn.active {
    background: #722F37;
    color: white;
    border-color: #722F37;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.order-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #faf8f7;
    flex-wrap: wrap;
    gap: 10px;
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.order-id {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.order-date {
    font-size: 13px;
    color: #666;
}

.order-status {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-shipped {
    background: #cce5ff;
    color: #004085;
}

.status-delivered {
    background: #d4edda;
    color: #155724;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.order-items {
    padding: 20px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item img {
    width: 70px;
    height: 85px;
    object-fit: cover;
    border-radius: 8px;
}

.order-item-details h4 {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}

.order-item-details p {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.order-item-price {
    font-weight: 600;
    color: #722F37;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
    gap: 15px;
}

.order-total {
    display: flex;
    gap: 10px;
    align-items: center;
}

.order-total span {
    color: #666;
    font-size: 14px;
}

.order-total strong {
    font-size: 18px;
    color: #333;
}

.order-actions {
    display: flex;
    gap: 10px;
}

.order-actions .btn {
    padding: 8px 20px;
    font-size: 13px;
}

.cancel-btn {
    color: #e74c3c !important;
    border-color: #e74c3c !important;
}

.cancel-btn:hover {
    background: #e74c3c !important;
    color: white !important;
}

/* Order Details Modal */
.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.order-modal-content {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
}

.order-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background: #722F37;
    color: white;
    border-radius: 12px 12px 0 0;
}

.order-modal-header h2 {
    font-size: 20px;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.order-modal-body {
    padding: 25px;
}

.order-details-section {
    margin-bottom: 25px;
}

.order-details-section h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.order-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.order-details-grid div {
    font-size: 14px;
    color: #666;
}

.order-details-grid strong {
    color: #333;
}

.modal-order-item {
    display: grid;
    grid-template-columns: 60px 1fr auto auto;
    gap: 15px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.modal-order-item img {
    width: 60px;
    height: 75px;
    object-fit: cover;
    border-radius: 6px;
}

.modal-item-details h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.modal-item-details p {
    font-size: 13px;
    color: #666;
}

.modal-item-qty,
.modal-item-price {
    font-size: 14px;
    color: #333;
}

.modal-item-price {
    font-weight: 600;
}

.order-summary-modal {
    background: #faf8f7;
    padding: 20px;
    border-radius: 8px;
}

.order-summary-modal .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: none;
    margin-bottom: 0;
}

.order-summary-modal .summary-row.total {
    border-top: 1px solid #ddd;
    margin-top: 10px;
    padding-top: 15px;
    font-size: 16px;
    font-weight: 600;
}

.order-modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.order-modal-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Addresses Section */
.add-address-btn {
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
}

.addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.address-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: all 0.3s;
}

.address-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.address-card.default {
    border-color: #722F37;
}

.address-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #722F37;
    color: white;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 10px;
}

.address-type {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #722F37;
    font-size: 13px;
    margin-bottom: 10px;
}

.address-type svg {
    width: 18px;
    height: 18px;
}

.address-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.address-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.address-phone {
    margin-top: 10px;
    font-weight: 500;
    color: #333 !important;
}

.address-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.address-actions button {
    background: none;
    border: none;
    color: #722F37;
    font-size: 13px;
    cursor: pointer;
    padding: 5px 0;
}

.address-actions button:hover {
    text-decoration: underline;
}

/* Address Modal */
.address-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.address-modal-content {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
}

.address-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background: #722F37;
    color: white;
    border-radius: 12px 12px 0 0;
}

.address-form {
    padding: 25px;
}

.address-form .form-group {
    margin-bottom: 20px;
}

.address-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.address-form .form-group input,
.address-form .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 20px;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Security Section */
.security-form {
    max-width: 400px;
}

.security-form .form-group {
    margin-bottom: 20px;
}

.security-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.password-input-wrapper {
    position: relative;
}

.password-input-wrapper input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
}

.toggle-password svg {
    width: 20px;
    height: 20px;
}

.password-strength {
    margin-top: 8px;
    font-size: 12px;
}

.security-options {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.security-options h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.toggle-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.toggle-option strong {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
}

.toggle-option p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Notifications Section */
.notifications-settings {
    max-width: 600px;
}

.notification-group {
    margin-bottom: 30px;
}

.notification-group h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.toggle-switch {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.toggle-switch span:first-child {
    flex: 1;
}

.toggle-switch strong {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
    font-weight: 500;
}

.toggle-switch p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.toggle-switch input {
    display: none;
}

.toggle-switch .slider {
    width: 50px;
    height: 26px;
    background: #ddd;
    border-radius: 13px;
    position: relative;
    transition: background 0.3s;
    flex-shrink: 0;
}

.toggle-switch .slider::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: left 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .slider {
    background: #722F37;
}

.toggle-switch input:checked + .slider::after {
    left: 26px;
}

/* Help Section */
.help-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.help-card {
    background: #faf8f7;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.help-card:hover {
    background: #722F37;
    color: white;
}

.help-card:hover .help-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.help-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #722F37;
    transition: all 0.3s;
}

.help-icon svg {
    width: 28px;
    height: 28px;
}

.help-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.help-card p {
    font-size: 13px;
    opacity: 0.8;
    margin: 0;
}

.faq-section {
    margin-bottom: 40px;
}

.faq-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #faf8f7;
}

.faq-question svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-question.active svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 15px 20px;
    background: #faf8f7;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.faq-answer.active {
    display: block;
}

.raise-ticket {
    background: #faf8f7;
    border-radius: 12px;
    padding: 25px;
}

.raise-ticket h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.raise-ticket .form-group {
    margin-bottom: 20px;
}

.raise-ticket .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.raise-ticket .form-group input,
.raise-ticket .form-group select,
.raise-ticket .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
}

.raise-ticket textarea {
    resize: vertical;
}

/* Logout Modal */
.logout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.logout-modal-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.logout-icon {
    width: 70px;
    height: 70px;
    background: #fdf2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.logout-icon svg {
    width: 35px;
    height: 35px;
    color: #e74c3c;
}

.logout-modal-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.logout-modal-content p {
    color: #666;
    margin-bottom: 25px;
}

.logout-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.logout-actions .btn {
    min-width: 120px;
}

/* Account Icon Button Active State */
.account-icon-btn.logged-in {
    color: #722F37;
}

.account-icon-btn.logged-in svg {
    fill: #722F37;
    stroke: #722F37;
}

/* =====================================================
   MY ACCOUNT PAGE RESPONSIVE STYLES
   ===================================================== */

@media (max-width: 1024px) {
    .account-container {
        grid-template-columns: 250px 1fr;
    }
    
    .profile-form-container {
        grid-template-columns: 1fr;
    }
    
    .profile-picture-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .account-container {
        grid-template-columns: 1fr;
        padding: 20px 15px;
    }
    
    .account-sidebar {
        position: static;
        margin-bottom: 20px;
    }
    
    .account-user-info {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    
    .account-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .account-nav-item {
        padding: 10px 15px;
        font-size: 13px;
        border: 1px solid #eee;
    }
    
    .account-nav-item svg {
        display: none;
    }
    
    .account-nav-item.logout-btn {
        margin-top: 0;
    }
    
    .account-content {
        padding: 20px;
    }
    
    .section-header-account h2 {
        font-size: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .order-details-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-order-item {
        grid-template-columns: 50px 1fr;
        gap: 10px;
    }
    
    .modal-item-qty,
    .modal-item-price {
        grid-column: 2;
        justify-self: start;
    }
    
    .help-options {
        grid-template-columns: 1fr;
    }
    
    .addresses-grid {
        grid-template-columns: 1fr;
    }
    
    .order-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .order-actions {
        width: 100%;
    }
    
    .order-actions .btn {
        flex: 1;
    }
    
    .order-modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .orders-filter {
        gap: 8px;
    }
    
    .order-filter-btn {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .order-item img {
        width: 60px;
        height: 70px;
    }
    
    .order-header {
        padding: 12px 15px;
    }
    
    .order-items,
    .order-footer {
        padding: 15px;
    }
    
    .help-card {
        padding: 20px;
    }
    
    .help-icon {
        width: 50px;
        height: 50px;
    }
    
    .help-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .faq-question {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .faq-answer {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .logout-modal-content {
        padding: 30px 20px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .mobile-nav,
    .mobile-menu-overlay {
        display: none;
    }

    .page {
        display: block;
    }
}

/* =====================================================
   SHOP PAGE STYLES
   ===================================================== */

/* Shop Layout */
.shop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
}

/* Sidebar Filters */
.filters-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.filter-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e5e5e5;
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #333;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #722F37;
    cursor: pointer;
}

.filter-option.active label {
    color: #722F37;
    font-weight: 500;
}

/* Price Range */
.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.price-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 14px;
    text-align: center;
    border-radius: 4px;
    transition: border-color 0.2s;
}

.price-input:focus {
    outline: none;
    border-color: #722F37;
}

.price-separator {
    color: #999;
    font-size: 14px;
}

/* Size Options */
.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    background: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.size-btn:hover,
.size-btn.active {
    border-color: #722F37;
    background: #722F37;
    color: white;
}

/* Apply Button */
.apply-filters-btn {
    width: 100%;
    padding: 16px;
    background: #722F37;
    color: white;
    border: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.apply-filters-btn:hover {
    background: #5a252c;
}

/* Products Grid */
.products-section {
    display: flex;
    flex-direction: column;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.products-count {
    font-size: 14px;
    color: #666;
}

.sort-select {
    padding: 12px 20px;
    border: 1px solid #ddd;
    font-size: 13px;
    background: white;
    cursor: pointer;
    min-width: 180px;
}

/* Quick View */
.quick-view {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    padding: 15px;
    text-align: center;
    transition: bottom 0.3s ease;
}

.product-card:hover .quick-view {
    bottom: 0;
}

.quick-view button {
    background: none;
    border: 1px solid #333;
    padding: 10px 25px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-view button:hover {
    background: #333;
    color: white;
}

/* Load More */
.load-more {
    text-align: center;
    margin-top: 60px;
}

.load-more button {
    background: none;
    border: 1px solid #333;
    padding: 15px 50px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.load-more button:hover {
    background: #333;
    color: white;
}

/* =====================================================
   CATEGORY PAGE STYLES
   ===================================================== */

/* Category Hero Banner */
.category-hero {
    height: 400px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://images.unsplash.com/photo-1558171813-4c088753af8f?w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.category-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.category-hero p {
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 40px;
    font-size: 13px;
    color: #666;
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #722F37;
}

/* Page Container */
.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 40px;
}

.filter-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.filter-label {
    font-size: 13px;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.filter-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    padding: 10px 0;
    border: none;
    background: none;
    letter-spacing: 0.5px;
}

.filter-dropdown svg {
    width: 10px;
    height: 10px;
}

.filter-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.view-toggle {
    display: flex;
    gap: 10px;
}

.view-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.view-btn.active, .view-btn:hover {
    border-color: #722F37;
    color: #722F37;
}

.product-count {
    font-size: 13px;
    color: #666;
}

.product-brand {
    font-size: 11px;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* =====================================================
   CART PAGE STYLES
   ===================================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #722F37 0%, #8B3A42 100%);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 14px;
    opacity: 0.9;
}

/* Cart Layout */
.cart-page {
    padding: 50px 0 80px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

/* Cart Items Section */
.cart-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    overflow: hidden;
}

.cart-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
}

.item-count {
    color: #666;
    font-size: 14px;
}

.clear-cart-btn {
    background: none;
    border: none;
    color: #e74c3c;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s;
}

.clear-cart-btn:hover {
    opacity: 0.7;
}

/* Cart Items */
.cart-item-image {
    border-radius: 8px;
    overflow: hidden;
    background: #f8f8f8;
}

.item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.item-variant {
    font-size: 13px;
    color: #666;
}

.item-price {
    font-size: 16px;
    font-weight: 600;
    color: #722F37;
    margin-top: 5px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 12px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
}

.qty-value {
    width: 50px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    background: white;
}

.item-total {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.wishlist-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid #e5e5e5;
    color: #666;
    font-size: 12px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 4px;
    transition: all 0.2s;
}

.wishlist-btn:hover {
    border-color: #722F37;
    color: #722F37;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 80px 40px;
}

.empty-cart-icon {
    font-size: 80px;
    margin-bottom: 25px;
    opacity: 0.3;
}

.empty-cart h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.empty-cart p {
    color: #666;
    margin-bottom: 30px;
}

/* Order Summary */
.order-summary {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    position: sticky;
    top: 100px;
    overflow: hidden;
}

.summary-header {
    background: #1a1a1a;
    color: white;
    padding: 22px 25px;
}

.summary-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
}

.summary-body {
    padding: 25px;
}

/* Coupon Section */
.coupon-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
}

.coupon-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.coupon-input-group {
    display: flex;
    gap: 10px;
}

.coupon-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.coupon-input:focus {
    outline: none;
    border-color: #722F37;
}

.apply-btn {
    padding: 12px 20px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.apply-btn:hover {
    background: #722F37;
}

.coupon-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(39, 174, 96, 0.1);
    padding: 12px 15px;
    border-radius: 6px;
    margin-top: 10px;
}

.coupon-applied span {
    color: #27ae60;
    font-size: 13px;
    font-weight: 500;
}

.remove-coupon {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 16px;
}

/* Summary Rows */
.summary-divider {
    border: none;
    border-top: 1px dashed #e5e5e5;
    margin: 15px 0;
}

/* Checkout Button */
.checkout-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: #722F37;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 25px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-btn:hover {
    background: #8B3A42;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(114, 47, 55, 0.3);
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.continue-shopping:hover {
    color: #722F37;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e5e5e5;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #666;
    text-align: center;
}

.trust-badge-icon {
    font-size: 22px;
}

/* Delivery Info */
.delivery-info {
    background: rgba(114, 47, 55, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.delivery-info p {
    font-size: 13px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.delivery-info .icon {
    font-size: 18px;
}

/* =====================================================
   CHECKOUT PAGE STYLES
   ===================================================== */

/* Checkout Steps */
.checkout-steps {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 13px;
}

.step.active {
    color: #722F37;
    font-weight: 600;
}

.step.completed {
    color: #27ae60;
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.step.active .step-number {
    background: #722F37;
    color: white;
}

.step.completed .step-number {
    background: #27ae60;
    color: white;
}

.step-divider {
    width: 40px;
    height: 2px;
    background: #e5e5e5;
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #27ae60;
}

/* Checkout Layout */
.checkout-page {
    padding: 40px 0 80px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

/* Form Sections */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option:hover {
    border-color: #8B3A42;
}

.payment-option.selected {
    border-color: #722F37;
    background: rgba(114, 47, 55, 0.03);
}

.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: #722F37;
}

.payment-icon {
    font-size: 28px;
}

.payment-details {
    flex: 1;
}

.payment-details h4 {
    font-size: 15px;
    margin-bottom: 3px;
}

.payment-details p {
    font-size: 12px;
    color: #666;
}

.payment-logos {
    display: flex;
    gap: 8px;
}

.payment-logos img {
    height: 24px;
}

/* Card Details */
.card-details {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.card-details.show {
    display: block;
}

.card-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.card-icons span {
    font-size: 28px;
}

/* UPI Section */
.upi-details {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.upi-details.show {
    display: block;
}

.upi-apps {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.upi-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 15px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.upi-app:hover {
    border-color: #722F37;
}

.upi-app.selected {
    border-color: #722F37;
    background: rgba(114, 47, 55, 0.05);
}

.upi-app span {
    font-size: 28px;
}

.upi-app small {
    font-size: 11px;
    color: #666;
}

/* Cart Items in Summary */
.summary-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.summary-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f8f8f8;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item-image {
    width: 70px;
    height: 85px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.summary-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-item-details {
    flex: 1;
}

.summary-item-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.summary-item-variant {
    font-size: 12px;
    color: #666;
    margin-bottom: 6px;
}

.summary-item-price {
    font-size: 14px;
    font-weight: 600;
    color: #722F37;
}

.summary-item-qty {
    font-size: 13px;
    color: #666;
}

/* Price Breakdown */
.price-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
}

.price-row.discount {
    color: #27ae60;
}

.price-divider {
    border: none;
    border-top: 1px dashed #e5e5e5;
    margin: 10px 0;
}

.price-row.total {
    font-size: 18px;
    font-weight: 700;
    padding-top: 15px;
}

.price-row.total .amount {
    color: #722F37;
    font-size: 22px;
}

/* Place Order Button */
.place-order-btn {
    display: block;
    width: 100%;
    padding: 18px;
    background: #722F37;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 25px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.place-order-btn:hover {
    background: #8B3A42;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(114, 47, 55, 0.3);
}

.place-order-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.back-to-cart {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #666;
    text-decoration: none;
    font-size: 13px;
}

.back-to-cart:hover {
    color: #722F37;
}

/* Trust Section */
.trust-section {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
}

.trust-item span {
    font-size: 18px;
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-overlay.show {
    display: flex;
}

.modal {
    background: white;
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    max-width: 450px;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: white;
}

.modal h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.modal p {
    color: #666;
    margin-bottom: 10px;
}

.order-id {
    font-weight: 600;
    color: #722F37;
    font-size: 18px;
    margin: 20px 0;
}

.modal-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #722F37;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
}

.modal-btn:hover {
    background: #8B3A42;
}

/* Confetti & Celebration Styles */
#confettiContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99999;
    overflow: hidden;
    display: none;
}

@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg) scale(0.5);
        opacity: 0;
    }
}

.celebration-modal {
    position: relative;
    overflow: visible;
}

.celebration-header {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.firework {
    font-size: 40px;
    animation: fireworkBurst 1s ease-out infinite;
}

.firework-1 { animation-delay: 0s; }
.firework-2 { animation-delay: 0.3s; }
.firework-3 { animation-delay: 0.6s; }

@keyframes fireworkBurst {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 1;
    }
    50% { 
        transform: scale(1.3) rotate(10deg); 
        opacity: 0.8;
    }
}

.celebration-icon {
    background: linear-gradient(135deg, #722F37 0%, #a64d55 50%, #FFD700 100%) !important;
    box-shadow: 0 10px 40px rgba(114, 47, 55, 0.4);
    animation: celebrationPulse 0.8s ease-out;
}

@keyframes celebrationPulse {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.congrats-text {
    font-size: 22px !important;
    color: #722F37 !important;
    font-weight: 600;
    margin-bottom: 5px !important;
}

.celebration-btn {
    background: linear-gradient(135deg, #722F37, #a64d55) !important;
    font-size: 16px;
    padding: 18px 45px !important;
    box-shadow: 0 5px 25px rgba(114, 47, 55, 0.3);
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(114, 47, 55, 0.3);
    }
    50% {
        box-shadow: 0 5px 35px rgba(114, 47, 55, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
    }
}

/* =====================================================
   WISHLIST PAGE STYLES
   ===================================================== */

/* Wishlist Page */
.wishlist-page {
    padding: 50px 0 80px;
}

.wishlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.wishlist-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
}

.clear-all-btn {
    background: none;
    border: 1px solid #e74c3c;
    color: #e74c3c;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.clear-all-btn:hover {
    background: #e74c3c;
    color: white;
}

/* Wishlist Grid */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Product Name */
.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 10px;
}

/* Empty Wishlist */
.empty-wishlist {
    text-align: center;
    padding: 100px 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.empty-icon {
    font-size: 80px;
    margin-bottom: 25px;
    opacity: 0.4;
}

.empty-wishlist h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.empty-wishlist p {
    color: #666;
    margin-bottom: 30px;
    font-size: 15px;
}

.shop-now-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #722F37;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.shop-now-btn:hover {
    background: #8B3A42;
    transform: translateY(-2px);
}

/* =====================================================
   SALE PAGE STYLES
   ===================================================== */

/* Page Title */
.page-title {
    font-family: 'Georgia', serif;
    font-size: 42px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
}

/* Sale Badge */
.sale-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: white;
    color: #333;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 2px;
}

/* Sort By */
.sort-by {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-by label {
    font-size: 14px;
    color: #666;
}

/* =====================================================
   NOTIFICATION STYLES
   ===================================================== */

.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1a1a1a;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    animation: slideIn 0.3s ease;
}

.notification.success {
    background: #27ae60;
}

.notification.error {
    background: #e74c3c;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* =====================================================
   NAV ICONS STYLES (Additional)
   ===================================================== */

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #722F37;
    color: white;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* =====================================================
   ADDITIONAL RESPONSIVE STYLES
   ===================================================== */

@media (max-width: 1200px) {
    .shop-container {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
    }

    .wishlist-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .shop-container {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 30px 0;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .wishlist-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .category-hero {
        height: 250px;
    }

    .category-hero h1 {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .checkout-steps {
        display: none;
    }

    .secure-badge {
        display: none;
    }

    .upi-apps {
        flex-wrap: wrap;
    }

    .upi-app {
        flex: 1;
        min-width: 70px;
    }
}

@media (max-width: 480px) {
    .wishlist-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
        font-size: 12px;
        padding: 10px 8px;
    }

    .category-hero {
        height: 200px;
    }

    .category-hero h1 {
        font-size: 24px;
    }

    .page-title {
        font-size: 28px;
    }
}

/* ===================================================
   MOBILE-FIRST PRODUCT CARD STYLES
   Professional, Clean, International Look
   =================================================== */

/* Tablet and below */
@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .product-card {
        border-radius: 8px !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.08) !important;
    }
}

/* Phone screens */
@media (max-width: 768px) {
    /* Product Grid - Clean 2 column */
    .product-grid,
    .category-products .product-grid,
    .featured-products .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 !important;
    }
    
    /* Product Card - Minimal & Clean */
    .product-card {
        background: #fff;
        border-radius: 8px !important;
        overflow: hidden;
        box-shadow: 0 1px 4px rgba(0,0,0,0.06) !important;
        border: 1px solid #f0f0f0;
    }
    
    .product-card:hover {
        transform: none !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    }
    
    /* Product Image - Square aspect */
    .product-card .product-image,
    .product-image-container {
        aspect-ratio: 1/1.15 !important;
        position: relative;
        overflow: hidden;
    }
    
    .product-card .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Hide hover effects on mobile */
    .product-card .product-image img.hover-img,
    .product-card .product-actions,
    .product-actions,
    .quick-view-btn {
        display: none !important;
    }
    
    /* Wishlist button - smaller */
    .product-card .product-wishlist,
    .wishlist-btn {
        width: 26px !important;
        height: 26px !important;
        top: 6px !important;
        right: 6px !important;
        font-size: 11px !important;
    }
    
    /* Badges - smaller */
    .product-card .product-badges,
    .product-badges {
        top: 6px !important;
        left: 6px !important;
        gap: 3px !important;
    }
    
    .product-card .badge,
    .badge {
        padding: 2px 6px !important;
        font-size: 8px !important;
        border-radius: 3px !important;
    }
    
    /* Product Info - Compact */
    .product-card .product-info,
    .product-info {
        padding: 10px !important;
    }
    
    /* Brand - Subtle */
    .product-card .product-brand,
    .product-brand {
        font-size: 8px !important;
        color: #999 !important;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        margin-bottom: 2px !important;
    }
    
    /* Title - Clean, 2 lines max */
    .product-card .product-title,
    .product-title {
        font-size: 12px !important;
        font-weight: 500 !important;
        line-height: 1.35 !important;
        margin: 2px 0 !important;
        color: #333;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: auto !important;
        max-height: 32px !important;
    }
    
    .product-title a {
        color: inherit !important;
        text-decoration: none;
    }
    
    /* Rating - Compact */
    .product-card .product-rating,
    .product-rating {
        margin: 4px 0 !important;
        gap: 3px !important;
    }
    
    .product-rating .stars,
    .stars {
        font-size: 10px !important;
        color: #f5a623;
    }
    
    .product-rating .rating-count,
    .rating-count {
        font-size: 9px !important;
        color: #999;
    }
    
    /* Price - Clear hierarchy */
    .product-card .product-price,
    .product-price {
        margin-top: 4px !important;
        gap: 5px !important;
        align-items: baseline !important;
        flex-wrap: wrap;
    }
    
    .product-price .price-current,
    .price-current,
    .current-price {
        font-size: 13px !important;
        font-weight: 600 !important;
        color: #222 !important;
    }
    
    .product-price .price-old,
    .price-old,
    .original-price {
        font-size: 10px !important;
        color: #999 !important;
        text-decoration: line-through;
    }
    
    /* Hide sizes on very small cards */
    .product-card .product-sizes,
    .product-card .product-colors,
    .product-sizes,
    .product-colors {
        display: none !important;
    }
    
    /* Section Headers - Mobile */
    .section-header {
        padding: 0 15px;
        margin-bottom: 15px !important;
    }
    
    .section-header h2 {
        font-size: 18px !important;
    }
    
    .section-header p {
        font-size: 12px !important;
    }
    
    /* Shop Toolbar */
    .shop-toolbar {
        padding: 8px 0 !important;
        gap: 8px !important;
    }
    
    .mobile-filter-btn {
        padding: 6px 12px !important;
        font-size: 11px !important;
        border-radius: 6px !important;
    }
    
    .view-toggle {
        display: none !important;
    }
    
    .sort-select {
        padding: 6px 8px !important;
        font-size: 11px !important;
        border-radius: 6px !important;
    }
    
    .product-count {
        font-size: 11px !important;
    }
}

/* Extra small phones */
@media (max-width: 380px) {
    .product-grid {
        gap: 6px !important;
    }
    
    .product-card .product-info,
    .product-info {
        padding: 8px !important;
    }
    
    .product-card .product-title,
    .product-title {
        font-size: 11px !important;
        max-height: 30px !important;
    }
    
    .product-card .product-brand,
    .product-brand {
        display: none !important;
    }
    
    .product-price .price-current,
    .price-current {
        font-size: 12px !important;
    }
    
    .product-rating {
        display: none !important;
    }
}

/* ================================================= */
/* TESTIMONIALS SECTION - Dynamic from Admin CMS     */
/* ================================================= */

.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: #f0f0f0;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.testimonial-rating .star {
    color: #ddd;
    font-size: 18px;
}

.testimonial-rating .star.filled {
    color: #ffc107;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}

.author-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 15px;
    color: #333;
}

.author-info span {
    font-size: 13px;
    color: #888;
}

/* ================================================= */
/* PROMOTIONAL BANNERS - Dynamic from Admin CMS      */
/* ================================================= */

.promo-banners-section {
    padding: 60px 0;
}

.promo-banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.promo-banner {
    position: relative;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    transition: all 0.4s ease;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
    transition: opacity 0.3s ease;
}

.promo-banner:hover {
    transform: scale(1.02);
}

.promo-banner:hover::before {
    opacity: 0.9;
}

.promo-banner-content {
    position: relative;
    z-index: 1;
    padding: 25px;
    color: #fff;
    width: 100%;
}

.promo-banner-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.promo-banner-content p {
    font-size: 14px;
    opacity: 0.9;
}

/* Testimonials & Promo Responsive */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-card::before {
        font-size: 60px;
    }
    
    .promo-banners-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-banner {
        height: 180px;
    }
}
