@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #767676;
    --bg-color: #ffffff;
    --text-color: #000000;
    --border-color: #e5e5e5;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px 0;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.announcement-content {
    display: inline-block;
    padding-left: 100%;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Header */
header {
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    height: 80px; /* Fixed height helps absolute centering */
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

header .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.header-icons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.logo a img {
    height: 55px;
    width: auto;
    display: block;
}

.nav-menu ul {
    display: flex;
    gap: 35px;
    /* Slightly tighter gap for better balance */
}

.nav-menu ul li a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

.header-icons {
    display: flex;
    gap: 25px;
    align-items: center;
}

.header-icons i {
    font-size: 18px;
    cursor: pointer;
    color: var(--primary-color);
    transition: var(--transition);
}

.header-icons i:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.section-padding {
    padding: 100px 5%; /* Increased whitespace for premium feel */
}

.btn-dark {
    display: inline-block;
    padding: 15px 45px;
    background: var(--primary-color);
    color: white;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    border: none;
    transition: var(--transition);
}

.btn-dark:hover {
    background: #333;
    transform: translateY(-3px);
}

/* Hero Slider */
.hero-slider-section {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero-slider,
.hero-slider .slick-list,
.hero-slider .slick-track {
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-content h2 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: black;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    border: none;
    transition: var(--transition);
}

.hero-btn:hover {
    background: black;
    color: white;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-item {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    cursor: pointer;
    overflow: hidden;
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    transition: var(--transition);
}

.category-item:hover::before {
    background: rgba(0, 0, 0, 0.5);
}

.category-content {
    position: relative;
    z-index: 2;
    color: white;
}

.category-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.category-content a {
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Products Section */
.section-padding {
    padding: 80px 40px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--accent-color);
    font-size: 16px;
}

.product-item {
    padding: 0 10px;
    text-align: left; /* Zara/H&M style is usually left-aligned */
    margin-bottom: 30px;
    position: relative;
}

.product-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
    height: 450px; /* Slightly taller for fashion look */
    background: #fdfdfd;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.product-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    font-size: 18px;
    color: #000;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
}

.product-item:hover .product-wishlist {
    opacity: 1;
}

.product-quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    cursor: pointer;
}

.product-item:hover .product-quick-add {
    transform: translateY(0);
}

.product-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

.product-info h3 {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    color: #333;
}

.product-info .price {
    font-weight: 500;
    font-size: 14px;
    color: #000;
}

/* Footer */
footer {
    background-color: #f8f8f8;
    padding: 60px 40px 20px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

.footer-col ul li a {
    font-size: 13px;
    color: var(--accent-color);
}

.subscribe-form {
    display: flex;
    margin-top: 15px;
}

.subscribe-form input {
    padding: 10px;
    border: 1px solid var(--border-color);
    width: 100%;
    outline: none;
}

.subscribe-form button {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--accent-color);
}

/* Slick Customization */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    /* Semi-transparent background for arrows */
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.slick-prev {
    left: 30px;
}

.slick-next {
    right: 30px;
}

.slick-prev:hover,
.slick-next:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.slick-dots {
    bottom: 20px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: white !important;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
}

/* Adjustments for Hero */
.hero-slider-section {
    position: relative;
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden on the right */
        width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 2001;
        padding: 80px 30px 40px;
        transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        display: block !important;
    }

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

    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
    }

    .nav-menu ul li a {
        font-size: 18px;
        font-weight: 500;
        text-transform: none; /* Zara style often uses mixed case in mobile menus */
    }

    #mobile-toggle {
        display: block !important;
        cursor: pointer;
    }
}

/* Promo Banner Section */
.promo-banner-section {
    padding: 60px 5%;
    background: #fdfdfd;
}

.promo-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.promo-image {
    flex: 1;
    overflow: hidden;
    height: 600px;
}

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

.promo-container:hover .promo-image img {
    transform: scale(1.05);
}

.promo-content {
    flex: 1;
    padding-right: 50px;
}

.promo-content .subtitle {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.promo-content h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.2;
}

.promo-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.8;
}

/* Newsletter Beautified */
.newsletter-beautified {
    background: #000;
    color: #fff;
    padding: 100px 5%;
    text-align: center;
}

.newsletter-container h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

.newsletter-container p {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.newsletter-form-modern {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 10px;
}

.newsletter-form-modern input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px;
    width: 100%;
    outline: none;
    font-size: 16px;
}

.newsletter-form-modern button {
    background: transparent;
    border: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 10px 20px;
    white-space: nowrap;
}

.newsletter-form-modern button:hover {
    opacity: 0.7;
}

/* Zara Style Grid */
.zara-grid-section {
    display: flex;
    padding: 20px;
    gap: 20px;
}

.zara-grid-item {
    flex: 1;
    position: relative;
    height: 80vh;
    min-height: 700px;
    overflow: hidden;
    cursor: pointer;
}

.zara-grid-image {
    width: 100%;
    height: 100%;
}

.zara-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.zara-grid-item:hover .zara-grid-image img {
    transform: scale(1.03);
}

.zara-grid-info {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: white;
    z-index: 2;
}

.zara-grid-info h3 {
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.zara-grid-info a {
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 5px;
    letter-spacing: 1px;
}

/* Floating WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.whatsapp-btn i {
    font-size: 20px;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background: #20ba5a;
    color: white;
}

@media (max-width: 768px) {
    .zara-grid-section {
        flex-direction: column;
    }
    .zara-grid-item {
        height: 500px;
        min-height: auto;
    }
    .whatsapp-btn span {
        display: none;
    }
    .whatsapp-btn {
        padding: 15px;
        border-radius: 50%;
    }
}

@media (max-width: 992px) {
    .promo-container {
        flex-direction: column;
        gap: 40px;
    }
    .promo-content {
        padding-right: 0;
        text-align: center;
    }
    .promo-content p {
        margin: 0 auto 40px;
    }
}

/* Trust Badges Widget */
.trust-badges {
    background: #fdfdfd;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 40px;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.badge-item i {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.badge-item h4 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.badge-item p {
    font-size: 13px;
    color: var(--accent-color);
}

/* Instagram Widget */
.instagram-section {
    padding: 80px 40px;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.insta-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.insta-item:hover img {
    filter: brightness(0.7);
}

/* Enhanced Slider Animations */
@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-slider .slick-active .hero-slide {
    animation: zoomIn 10s linear infinite alternate;
}

.hero-content h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.hero-btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.6s;
}

.slick-active .hero-content h2,
.slick-active .hero-content .hero-btn {
    opacity: 1;
    transform: translateY(0);
}
/* Product Detail Page */
.product-detail-page {
    background: #fff;
}

.product-container {
    display: flex;
    gap: 60px;
    padding: 40px 5%;
}

.product-gallery {
    flex: 1.6;
}

.main-image {
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
}

.product-info-sticky {
    flex: 1;
    position: sticky;
    top: 120px;
    height: fit-content;
    padding-bottom: 40px;
}

.product-header .product-category {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.product-header h1 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 8px; /* Reduced from 15px */
    letter-spacing: 1px;
}

.product-price {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px; /* Reduced from 30px */
}

.product-description {
    font-size: 15px;
    color: #444;
    line-height: 1.6; /* Tighter line height */
    margin-bottom: 25px; /* Reduced from 40px */
}

.option-item {
    margin-bottom: 20px; /* Reduced from 30px */
}

.option-item label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

.option-item label span {
    font-weight: 400;
    color: var(--accent-color);
    margin-left: 5px;
}

.color-swatches {
    display: flex;
    gap: 15px;
}

.swatch {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.swatch.active {
    border-color: #000;
    padding: 2px;
    background-clip: content-box !important;
}

.size-selector button {
    padding: 10px 25px;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    font-size: 13px;
}

.size-selector button.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Reduced from 15px */
    margin-bottom: 30px; /* Reduced from 50px */
}

.btn-add-to-cart {
    background: #000;
    color: #fff;
    border: none;
    padding: 18px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-to-cart:hover {
    background: #333;
}

.btn-wishlist-detail {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 15px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.product-accordion {
    border-top: 1px solid var(--border-color);
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
}

.accordion-content {
    padding-bottom: 20px;
    display: none;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .product-container {
        flex-direction: column;
    }
    .product-info-sticky {
        position: static;
    }
}

/* Product Detail Widgets */
.social-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #e63946;
    margin-bottom: 30px;
    background: #fff5f5;
    padding: 10px 15px;
    border-radius: 4px;
    width: fit-content;
}

.customization-field input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.customization-field input:focus {
    border-color: #000;
}

.field-help {
    font-size: 11px;
    color: var(--accent-color);
    margin-top: 8px;
}

.delivery-estimate {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.delivery-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.delivery-item i {
    font-size: 20px;
    color: #000;
}

.delivery-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.delivery-item p {
    font-size: 13px;
    color: #666;
}

.product-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
}

.trust-badge-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-badge-item i {
    font-size: 18px;
    color: #000;
}

.trust-badge-item span {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #333;
}

.optional {
    font-weight: 400;
    font-size: 11px;
    color: #999;
}

/* Compact spacing for widgets */
.social-proof {
    margin-bottom: 20px !important;
    padding: 8px 12px !important;
}

.delivery-estimate {
    padding: 15px !important;
    margin-bottom: 20px !important;
}

.product-trust-badges {
    margin-bottom: 25px !important;
    padding: 15px 0 !important;
}

.option-item.customization-field {
    margin-top: 10px;
}

/* Layout adjustments */
.product-gallery {
    flex: 1.2 !important; /* Made smaller */
}

.product-info-sticky {
    flex: 1.2 !important; /* Made larger */
}

/* Complete the Look Style */
.complete-the-look {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.complete-the-look h3 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.look-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.look-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.look-item img {
    width: 80px;
    height: 100px;
    object-fit: cover;
}

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

.look-info span {
    font-size: 13px;
    color: #333;
}

.look-info strong {
    font-size: 14px;
}

.btn-add-small {
    background: transparent;
    border: 1px solid #000;
    padding: 5px 15px;
    font-size: 11px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 5px;
    width: fit-content;
    transition: var(--transition);
}

.btn-add-small:hover {
    background: #000;
    color: #fff;
}

/* Recently Viewed Slider Fix */
.recently-viewed {
    background: #fdfdfd;
}

/* Premium Personalization Widget */
.personalization-widget {
    background: #fdfdfd;
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 4px;
    margin-top: 20px;
}

.personalization-header label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: none !important;
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    display: inline-block;
    position: relative;
    transition: var(--transition);
}

.checkbox-container input:checked + .checkmark {
    background: #000;
}

.checkbox-container input:checked + .checkmark::after {
    content: '?';
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.personalization-fields {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed var(--border-color);
}

.field-group {
    margin-bottom: 15px;
    position: relative;
}

.field-group label {
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.field-group input, .field-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    outline: none;
}

.char-count {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 10px;
    color: #999;
}

.field-help i {
    color: #666;
    margin-right: 5px;
}

/* Category Page Styles */
.category-banner {
    background: #f9f9f9;
    padding: 40px 5%; /* Reduced from 80px */
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.category-banner h1 {
    font-size: 24px; /* Reduced from 42px */
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.category-banner p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.category-container {
    display: flex;
    padding: 40px 5%;
    gap: 50px;
}

.category-sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.filter-group {
    margin-bottom: 35px;
}

.filter-group h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.filter-group ul {
    list-style: none;
}

.filter-group ul li {
    margin-bottom: 10px;
}

.filter-group ul li a {
    font-size: 14px;
    color: #555;
    transition: var(--transition);
}

.filter-group ul li a.active, .filter-group ul li a:hover {
    color: #000;
    font-weight: 600;
}

.filter-colors {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-color {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #eee;
}

.filter-price input {
    width: 100%;
    accent-color: #000;
}

.price-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

.filter-sizes label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    cursor: pointer;
}

.category-content {
    flex: 1;
}

.listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.product-count {
    font-size: 14px;
    color: #666;
}

.listing-options select {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    outline: none;
    font-size: 14px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    color: #000;
    font-size: 14px;
    transition: var(--transition);
}

.pagination a.active, .pagination a:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

@media (max-width: 992px) {
    .category-container {
        flex-direction: column;
    }
    .category-sidebar {
        width: 100%;
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Cart Drawer Styles */
.cart-trigger {
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #000;
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    left: -450px; /* Opens from left */
    width: 400px;
    height: 100%;
    background: #fff;
    z-index: 2000;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
}

.cart-drawer.active {
    left: 0;
}

.cart-drawer-header {
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#cart-close {
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

#cart-close:hover {
    transform: rotate(90deg);
}

.cart-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.empty-cart-msg {
    text-align: center;
    margin-top: 50px;
}

.empty-cart-msg p {
    margin-bottom: 20px;
    color: #666;
}

.cart-drawer-footer {
    padding: 30px;
    border-top: 1px solid var(--border-color);
    background: #f9f9f9;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-checkout {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 18px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-checkout:hover {
    background: #333;
}

@media (max-width: 480px) {
    .cart-drawer {
        width: 100%;
        left: -100%;
    }
}

/* Mobile Menu Adjustments */
.mobile-menu-header {
    display: none; /* Only visible on mobile */
    justify-content: flex-end;
    margin-bottom: 30px;
}

#mobile-menu-close {
    font-size: 24px;
    cursor: pointer;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

@media (max-width: 992px) {
    .mobile-menu-header {
        display: flex;
    }
}

/* Instagram Section Small & Beautified */
.instagram-section {
    padding: 40px 10% !important; /* Narrower container for smaller look */
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px; /* Tiny gaps */
}

.insta-item {
    position: relative;
    aspect-ratio: 1 / 1; /* Force square */
    overflow: hidden;
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    opacity: 0;
    transition: var(--transition);
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Stripe Style Checkout */
.checkout-page {
    background: #fff;
    min-height: 100vh;
}

.checkout-container {
    display: flex;
    min-height: calc(100vh - 80px);
}

/* Left Section: Order Summary */
.order-summary-section {
    flex: 1;
    background: #f6f9fc;
    display: flex;
    justify-content: flex-end;
    padding: 60px 5% 60px 0;
    border-right: 1px solid #e6ebf1;
}

.summary-content {
    width: 100%;
    max-width: 450px;
    padding: 0 40px;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #697386;
    margin-bottom: 40px;
}

.pay-to {
    color: #697386;
    font-size: 14px;
    margin-bottom: 5px;
}

.total-amount {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.item-list {
    margin-bottom: 30px;
}

.summary-item {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.item-image img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e6ebf1;
}

.item-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.item-name-qty strong {
    display: block;
}

.item-name-qty span {
    color: #697386;
    font-size: 12px;
}

.summary-totals {
    border-top: 1px solid #e6ebf1;
    padding-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #697386;
    margin-bottom: 10px;
}

.total-row {
    margin-top: 20px;
    color: #1a1f36;
    font-size: 16px;
}

/* Right Section: Payment Form */
.payment-form-section {
    flex: 1;
    padding: 60px 0 60px 5%;
    display: flex;
    justify-content: flex-start;
}

.stripe-form {
    width: 100%;
    max-width: 500px;
    padding: 0 40px;
}

.form-group h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 20px;
    margin-top: 40px;
}

.form-group:first-child h3 {
    margin-top: 0;
}

.input-wrapper {
    margin-bottom: 20px;
}

.input-wrapper label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #3c4257;
    margin-bottom: 8px;
}

.input-wrapper input, .input-wrapper select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e6ebf1;
    border-radius: 4px;
    font-size: 14px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.03);
    outline: none;
    transition: var(--transition);
}

.input-row {
    display: flex;
    gap: 15px;
}

.input-row .input-wrapper {
    flex: 1;
}

.payment-card-wrapper {
    border: 1px solid #e6ebf1;
    border-radius: 4px;
    padding: 1px;
}

.card-input-header {
    background: #fcfcfc;
    padding: 10px 15px;
    border-bottom: 1px solid #e6ebf1;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #697386;
}

.card-icons {
    display: flex;
    gap: 5px;
    font-size: 18px;
}

.payment-card-wrapper input {
    border: none;
    box-shadow: none;
    padding: 15px;
    border-bottom: 1px solid #e6ebf1;
}

.payment-card-wrapper .input-row input {
    border-bottom: none;
}

.payment-card-wrapper .input-row input:first-child {
    border-right: 1px solid #e6ebf1;
}

.btn-pay {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 30px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.btn-pay:hover {
    background: #2a2a2a;
}

.terms-text {
    font-size: 12px;
    color: #697386;
    margin-top: 20px;
    text-align: center;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .checkout-container {
        flex-direction: column;
    }
    .order-summary-section, .payment-form-section {
        padding: 40px 5%;
        justify-content: center;
    }
    .summary-content, .stripe-form {
        max-width: 100%;
        padding: 0;
    }
}
