:root{
    --primary-color: #017c84; /* WoodMart green */
    --primary-color-600: #6aac37;
    --accent-color: #ffb400;
    --dark-color: #1b1b1b;
    --secondary-color: #2e2e2e;
    --light-bg: #f6f8f3;
    --panel-bg: #ffffff;
    --muted: #6c757d;
    --border-color: #e6e6dd;
    --shadow-1: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-2: 0 10px 25px rgba(0,0,0,0.12);
    --success-color: #28a745;
    --font-main: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--dark-color);
    line-height: 1.6;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.logo img {
    height: 80px;
    width: 200px;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-size: 14px;
}

.search-bar button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray-color);
    cursor: pointer;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    cursor: pointer;
}

.header-action i {
    font-size: 20px;
    margin-bottom: 5px;
}

.header-action span {
    font-size: 12px;
}

.cart-count {
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    position: absolute;
    top: -5px;
    right: -5px;
}

.cart-icon {
    position: relative;
}

.main-nav {
    padding: 15px 0;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    padding: 15px 0;
    border-top: 2px solid var(--primary-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 8px 20px;
    font-weight: normal;
}

/* Hero Section */
.hero {
    padding: 40px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 500px;
}

.hero-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-box.large {
    grid-row: 1 / span 2;
}

.hero-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.hero-box:hover img {
    transform: scale(1.05);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: #FFF8E7;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.hero-content h1 {
    font-size: 25px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #d62a76;
}

.sale-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
}

/* Categories Section */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.category img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category:hover img {
    transform: scale(1.1);
}

.category-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.category h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

/* Products Section */
.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.product:hover .product-actions {
    opacity: 1;
}

.product-action {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.product-action:hover {
    background-color: var(--primary-color);
    color: white;
}

.product-info {
    padding: 15px;
}

.product-category {
    color: var(--gray-color);
    font-size: 12px;
    margin-bottom: 5px;
}

.product-title {
    font-weight: 600;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.current-price {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
}

.old-price {
    text-decoration: line-through;
    color: var(--gray-color);
    font-size: 14px;
}

.product-rating {
    color: #ffc107;
    font-size: 14px;
}

.add-to-cart {
    width: 100%;
    padding: 10px;
    background-color: var(--dark-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
    font-weight: 600;
}

.add-to-cart:hover {
    background-color: var(--primary-color);
}

/* Promo Banner Section */
.promo-banner {
    padding: 60px 0;
    background-color: #fff;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.banner-box {
    border-radius: 10px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.banner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.banner-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.banner-box:hover .banner-image {
    transform: scale(1.05);
}

.promo-code .banner-image {
    background-image: url('https://i.pinimg.com/1200x/a8/af/ff/a8afff5642c8a23e40266d41b0cce689.jpg');
}

.free-delivery .banner-image {
    background-image: url('https://i.pinimg.com/1200x/ce/fa/bb/cefabbcebea8d7e10f383ba5fd81ec98.jpg');
}

.banner-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
}

.banner-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.banner-content > p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.promo-code-display {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 12px 20px;
    margin-bottom: 15px;
    display: inline-block;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.promo-code-display span {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.promo-note {
    font-size: 12px;
    opacity: 0.8;
}

.delivery-info p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 300px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Cart Modal Styles */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: flex-end;
}

.cart-modal.active {
    display: flex;
}

.cart-modal-content {
    background-color: white;
    width: 100%;
    max-width: 450px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.cart-modal.active .cart-modal-content {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cart-header h3 {
    margin: 0;
    font-size: 22px;
}

.close-cart {
    font-size: 28px;
    cursor: pointer;
    color: var(--gray-color);
    transition: color 0.3s;
}

.close-cart:hover {
    color: var(--dark-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart-message {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-color);
}

.empty-cart-message i {
    font-size: 60px;
    margin-bottom: 20px;
    color: var(--border-color);
}

.empty-cart-message p {
    margin-bottom: 20px;
    font-size: 18px;
}

.cart-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-color);
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.quantity-btn:hover {
    background-color: var(--light-color);
}

.quantity-value {
    width: 40px;
    height: 30px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item {
    color: var(--gray-color);
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
}

.remove-item:hover {
    color: #e74c3c;
}

.remove-item i {
    margin-right: 5px;
}

.cart-summary {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background-color: var(--light-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-secondary {
    background-color: white;
    color: var(--dark-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--light-color);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 3000;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Discount Section */
.discount-section {
    padding: 60px 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.discount-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.discount-title h2 {
    font-size: 28px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.discount-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.discount-slider-controls {
    display: flex;
    gap: 10px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.discount-slider {
    position: relative;
    overflow: hidden;
}

.discount-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.discount-product {
    min-width: 250px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.discount-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.discount-product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.discount-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.discount-product:hover .discount-product-image img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.discount-product-info {
    padding: 15px;
}

.discount-product-title {
    font-weight: 600;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
}

.discount-product-category {
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 10px;
}

.discount-product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.discount-price {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-color);
}

.original-price {
    text-decoration: line-through;
    color: var(--muted);
    font-size: 14px;
}

.discount-product-rating {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 10px;
}

.discount-add-to-cart {
    width: 100%;
    padding: 8px;
    background-color: var(--dark-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
    font-size: 14px;
}

.discount-add-to-cart:hover {
    background-color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.testimonials-header p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-content {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-intro {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-intro p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-item {
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    font-size: 14px;
    color: #333;
    margin-top: auto;
}

.testimonial-author strong {
    font-weight: 600;
}

.testimonials-cta {
    text-align: center;
    padding-top: 30px;
}

.testimonials-cta hr {
    border: none;
    height: 1px;
    background-color: #e0e0e0;
    margin-bottom: 30px;
}

.testimonials-cta .btn {
    background-color: #333;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.testimonials-cta .btn:hover {
    background-color: var(--primary-color);
}

/* Premium Fashion Banner */
.premium-fashion-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.premium-fashion-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(122, 193, 66, 0.03) 100%);
    z-index: 1;
}

.premium-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.premium-banner-text {
    flex: 1;
    max-width: 580px;
}

.premium-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.premium-tag {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.premium-divider {
    width: 1px;
    height: 16px;
    background-color: #ddd;
}

.premium-date {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

.premium-headline {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.premium-description {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    max-width: 90%;
}

.premium-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.premium-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 16px;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(122, 193, 66, 0.25);
}

.primary-btn:hover {
    background-color: var(--primary-color-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 193, 66, 0.35);
}

.primary-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.primary-btn:hover i {
    transform: translateX(4px);
}

.secondary-btn {
    background-color: transparent;
    color: #333;
    border: 2px solid #e0e0e0;
}

.secondary-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.premium-stats {
    display: flex;
    gap: 40px;
}

.premium-stat {
    text-align: left;
}

.premium-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.premium-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.premium-visual {
    flex: 1;
    position: relative;
    max-width: 520px;
}

.premium-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.premium-main-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.premium-image-container:hover .premium-main-image {
    transform: scale(1.03);
}

.premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
    pointer-events: none;
}

.premium-badges {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.premium-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.premium-badge i {
    color: var(--primary-color);
    font-size: 16px;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--light-color);
    text-align: center;
    padding: 60px 0;
}

.newsletter h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--gray-color);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 30px 0 0 30px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 0 25px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-weight: 600;
}

/* Footer */
footer{
    background:#273321;color:#fff;padding:60px 0 20px;
}
.footer-content{display:grid;grid-template-columns:repeat(4,1fr);gap:30px;margin-bottom:34px}
.footer-column h4{font-size:18px;margin-bottom:20px;position:relative;padding-bottom:8px}
.footer-column h4::after{content:'';position:absolute;bottom:0;left:0;width:40px;height:3px;background:var(--primary-color)}
.footer-links a{color:#c5c9bf;transition:color .2s}
.footer-links a:hover{color:var(--primary-color)}
.contact-info li{display:flex;align-items:flex-start;margin-bottom:14px;color:#c5c9bf}
.contact-info i{margin-right:10px;color:var(--primary-color)}
.social-links{display:flex;gap:12px;margin-top:16px}
.social-link{width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,0.06);display:flex;align-items:center;justify-content:center;transition:background .2s}
.social-link:hover{background:var(--primary-color)}
.footer-bottom{text-align:center;padding-top:18px;border-top:1px solid rgba(255,255,255,0.06);color:#b9bdb3;font-size:14px}

/* Product Modal Styles */
.product-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 4000;
    pointer-events: none;
}

.product-modal.active {
    display: flex;
    pointer-events: auto;
}

.product-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    transition: opacity 240ms ease-in-out;
}

.product-modal-inner {
    position: relative;
    max-width: 1100px;
    width: 95%;
    margin: 40px auto;
    z-index: 4001;
    transform: translateY(10px);
    opacity: 0;
    transition: opacity 240ms ease-in-out, transform 240ms ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-modal.active .product-modal-overlay {
    opacity: 1;
}

.product-modal.active .product-modal-inner {
    transform: translateY(0);
    opacity: 1;
}

.product-modal-content {
    display: flex;
    gap: 30px;
    background: #fff;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}

.product-modal-image {
    width: 48%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
}

.product-modal-image img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    display: block;
}

.product-modal-details {
    width: 52%;
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.modal-category {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 6px;
}

.modal-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.modal-rating {
    color: #ffc107;
    margin-bottom: 12px;
    font-size: 14px;
}

.modal-price {
    display: flex;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 12px;
}

.modal-current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.modal-old-price {
    text-decoration: line-through;
    color: var(--muted);
    font-size: 14px;
}

.modal-desc {
    color: #444;
    line-height: 1.6;
    margin-bottom: 18px;
    max-height: 120px;
    overflow: auto;
}

.product-modal-actions {
    margin-top: auto;
    display: flex;
    gap: 12px;
    align-items: center;
}

.product-modal-close,
.product-modal-close:focus,
.product-modal-close:active,
#product-modal-close {
    background: transparent;
    border: none;
    font-size: 28px;
    color: #333;
    position: absolute;
    right: 14px;
    top: 12px;
    cursor: pointer;
    z-index: 5000;
}

.product-modal .btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
}

.product-modal .btn.btn-secondary {
    background: white;
    border: 1px solid var(--border-color);
}

/* Product Popup (Quick View Modal) */
.product-popup {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.product-popup.active {
  display: flex;
}

.product-popup-content {
  background: #fff;
  border-radius: 10px;
  max-width: 900px;
  width: 90%;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  animation: scaleUp 0.3s ease;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
  transition: color 0.3s;
}

.popup-close:hover {
  color: var(--primary-color);
}

.popup-left {
  flex: 1;
  background: #f8f8f8;
}

.popup-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-right {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
}

.popup-right h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.popup-category {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}

.popup-rating {
  color: #ffc107;
  font-size: 14px;
  margin-bottom: 10px;
}

.popup-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.popup-price .current-price {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 700;
}

.popup-price .old-price {
  text-decoration: line-through;
  color: #aaa;
}

.popup-sku {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.popup-options {
  margin-bottom: 20px;
}

.option h4 {
  font-size: 14px;
  margin-bottom: 6px;
}

.color-swatches {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.swatch {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s, border 0.2s;
}

.swatch:hover,
.swatch.active {
  transform: scale(1.1);
  border-color: var(--primary-color);
}

.size-options {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.size-btn {
  border: 1px solid var(--border-color);
  background: white;
  padding: 6px 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
  font-weight: 500;
}

.size-btn.active,
.size-btn:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.quantity-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-stepper button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border-color);
  background: white;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: all 0.3s;
}

.quantity-stepper button:hover {
  background: var(--primary-color);
  color: white;
}

.quantity-stepper input {
  width: 50px;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: 3px;
  padding: 4px;
}

.popup-description {
  font-size: 14px;
  line-height: 1.6;
  margin: 15px 0;
  color: #444;
}

.popup-social {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.popup-social a {
  color: #555;
  font-size: 16px;
  transition: color 0.3s;
}

.popup-social a:hover {
  color: var(--primary-color);
}

.add-to-cart-btn {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
}

/* Search Results Styles */
.search-results {
    background-color: #f8f9fa;
}

.search-results .section-title h2 {
    color: #333;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-results i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
}

.no-results h3 {
    margin-bottom: 15px;
    color: #333;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(122, 193, 66, 0.2);
}

/* Toast container */
#toast-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 5000;
    pointer-events: none;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUp {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ==============================
   RESPONSIVE STYLES
   ============================== */

/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
    .hero-grid {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .categories, .products, .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .premium-headline {
        font-size: 42px;
    }
    
    .premium-banner-content {
        gap: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-bar {
        max-width: 100%;
        margin: 10px 0;
    }
    
    .search-bar input {
        font-size: 16px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .hero-box.large {
        grid-row: 1;
        height: 400px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .banner-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-box {
        padding: 30px;
        min-height: 250px;
    }
    
    .banner-content h3 {
        font-size: 24px;
    }
    
    .promo-code-display span {
        font-size: 18px;
    }
    
    .discount-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .discount-slider-controls {
        align-self: flex-end;
    }
    
    .premium-fashion-banner {
        padding: 60px 0;
    }
    
    .premium-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .premium-banner-text {
        max-width: 100%;
    }
    
    .premium-headline {
        font-size: 38px;
    }
    
    .premium-description {
        max-width: 100%;
    }
    
    .premium-cta {
        justify-content: center;
    }
    
    .premium-stats {
        justify-content: center;
    }
    
    .premium-visual {
        max-width: 100%;
    }
    
    .premium-fashion-banner::before {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        background: linear-gradient(0deg, rgba(122, 193, 66, 0.03) 0%, transparent 100%);
    }
    
    .premium-headline {
        font-size: 32px;
    }
    
    .premium-description {
        font-size: 16px;
    }
    
    .premium-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .premium-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .premium-stats {
        gap: 30px;
    }
    
    .premium-number {
        font-size: 24px;
    }
    
    .premium-main-image {
        height: 380px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-header h2 {
        font-size: 28px;
    }
    
    .testimonial-item {
        padding: 20px;
    }
    
    .product-modal-content {
        flex-direction: column;
    }
    
    .product-modal-image, .product-modal-details {
        width: 100%;
    }
    
    .product-modal-image {
        min-height: 260px;
    }
    
    .product-popup-content {
        flex-direction: column;
        max-width: 95%;
    }
}

/* Small devices (phones, 576px and up) */
@media (max-width: 576px) {
    .categories, .footer-content {
        grid-template-columns: 1fr;
    }
    
    .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Optional: Adjust product styling for better fit in 2-column layout */
    .product {
        margin-bottom: 0;
    }
    
    .product-image {
        height: 180px; /* Slightly reduce height for mobile */
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-title {
        font-size: 14px;
        -webkit-line-clamp: 2;
    }
    
    .current-price {
        font-size: 16px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input, .newsletter-form button {
        border-radius: 30px;
        width: 100%;
    }
    
    .cart-modal-content {
        max-width: 100%;
    }
    
    .cart-item {
        flex-direction: column;
    }
    
    .cart-item-image {
        width: 100%;
        height: 150px;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .premium-headline {
        font-size: 28px;
    }
    
    .premium-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .premium-divider {
        display: none;
    }
    
    .premium-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .premium-stat {
        text-align: center;
    }
    
    .premium-badges {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        flex-direction: row;
        justify-content: center;
    }
    
    .premium-badge {
        padding: 10px 15px;
    }
}








/* ======= FIX HERO SECTION FOR MOBILE ======= */
@media (max-width: 768px) {
  .hero {
    padding: 20px 0;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .hero-box {
    height: auto;
  }

  .hero-box.large,
  .hero-box.small {
    height: 300px;
  }

  .hero-box img {
    height: 100%;
    object-fit: cover;
  }

  .hero-content {
    padding: 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 20px;
  }

  .hero-content h2 {
    font-size: 18px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .btn {
    padding: 8px 18px;
    font-size: 14px;
  }

  .sale-badge {
    font-size: 13px;
    padding: 6px 10px;
  }
}

@media (max-width: 480px) {
  .hero-box.large,
  .hero-box.small {
    height: 250px;
  }

  .hero-content h1 {
    font-size: 18px;
  }

  .hero-content p {
    font-size: 13px;
  }
}





 /* ==============================
           MOBILE NAVIGATION STYLES
           ============================== */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--dark-color);
            cursor: pointer;
            padding: 5px;
            margin-left: auto;
        }
        
        .nav-links {
            display: flex;
            transition: transform 0.3s ease;
        }
        
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }
        
        .mobile-nav-overlay.active {
            display: block;
        }
        
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
            
            .main-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background-color: white;
                z-index: 1000;
                transition: right 0.3s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                padding: 20px;
                overflow-y: auto;
            }
            
            .main-nav.active {
                right: 0;
            }
            
            .nav-links {
                flex-direction: column;
                gap: 0;
                margin-top: 30px;
            }
            
            .nav-links li {
                width: 100%;
                border-bottom: 1px solid var(--border-color);
            }
            
            .nav-links a {
                display: block;
                padding: 15px 0;
                font-weight: 500;
                font-size: 16px;
                transition: color 0.3s, background-color 0.3s;
            }
            
            .nav-links a:hover {
                color: var(--primary-color);
                background-color: rgba(1, 124, 132, 0.05);
            }
            
            .close-mobile-nav {
                position: absolute;
                top: 15px;
                right: 15px;
                background: none;
                border: none;
                font-size: 24px;
                color: var(--dark-color);
                cursor: pointer;
            }
            
            .header-top {
                position: relative;
            }
            
            .header-actions {
                gap: 15px;
            }
            
            .header-action {
                font-size: 10px;
            }
            
            .header-action i {
                font-size: 18px;
            }
        }
        
        @media (max-width: 576px) {
            .header-top {
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .logo {
                order: 1;
            }
            
            .mobile-menu-toggle {
                order: 2;
            }
            
            .header-actions {
                order: 3;
                width: 100%;
                justify-content: space-around;
                margin-top: 10px;
            }
            
            .search-bar {
                order: 4;
                width: 100%;
                margin: 10px 0 0;
            }
        }






        /* Product Popup Mobile Responsive Fix */
@media (max-width: 768px) {
  .product-popup-content {
    flex-direction: column !important;
    width: 95% !important;
    max-width: 95% !important;
    height: 90vh !important;
    max-height: 90vh !important;
    margin: 5vh auto !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }
  
  .popup-left, .popup-right {
    flex: none !important;
    width: 100% !important;
  }
  
  .popup-left {
    height: 40% !important;
    min-height: 200px !important;
  }
  
  .popup-left img {
    height: 100% !important;
    object-fit: cover !important;
  }
  
  .popup-right {
    height: 60% !important;
    padding: 20px !important;
    overflow-y: auto !important;
  }
  
  .popup-close {
    position: fixed !important;
    top: 15px !important;
    right: 15px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    z-index: 3001 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
  }
  
  .popup-right h2 {
    font-size: 20px !important;
    margin-bottom: 8px !important;
  }
  
  .popup-price .current-price {
    font-size: 18px !important;
  }
  
  .popup-options {
    margin-bottom: 15px !important;
  }
  
  .option h4 {
    font-size: 14px !important;
    margin-bottom: 5px !important;
  }
  
  .color-swatches {
    margin-bottom: 15px !important;
  }
  
  .swatch {
    width: 22px !important;
    height: 22px !important;
  }
  
  .size-options {
    margin-bottom: 15px !important;
  }
  
  .size-btn {
    padding: 5px 12px !important;
    font-size: 14px !important;
  }
  
  .quantity-stepper {
    margin-bottom: 15px !important;
  }
  
  .popup-description {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin: 10px 0 !important;
  }
  
  .popup-social {
    margin: 15px 0 !important;
  }
  
  .add-to-cart-btn {
    padding: 14px !important;
    font-size: 16px !important;
    margin-top: 10px !important;
  }
}

/* Additional improvements for very small screens */
@media (max-width: 480px) {
  .popup-left {
    height: 35% !important;
    min-height: 180px !important;
  }
  
  .popup-right {
    height: 65% !important;
    padding: 15px !important;
  }
  
  .popup-right h2 {
    font-size: 18px !important;
  }
  
  .popup-price .current-price {
    font-size: 16px !important;
  }
  
  .option h4 {
    font-size: 13px !important;
  }
  
  .size-btn {
    padding: 4px 10px !important;
    font-size: 13px !important;
  }
  
  .popup-description {
    font-size: 13px !important;
  }
  
  .popup-close {
    width: 36px !important;
    height: 36px !important;
    font-size: 20px !important;
  }
} 

