/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-left {
    flex: 1;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Hamburger Button */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-btn span {
    width: 25px;
    height: 2px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

.hamburger-btn:hover span {
    background-color: #666;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 24px;
    color: #1a1a1a;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #1a1a1a;
}

/* Icon Buttons */
.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #1a1a1a;
}

.icon-btn:hover {
    color: #666;
    transform: scale(1.1);
}

.icon-btn svg {
    transition: all 0.3s ease;
}

/* Banner Container */
.banner-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    margin-top: 0;
    overflow: hidden;
}

.banner-slider {
    display: flex;
    width: 100%;
    height: 100vh;
    transition: transform 0.5s ease-in-out;
}

.banner-slide {
    flex: 0 0 50%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100vh;
}

.banner-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.banner-content {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.banner-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Animated Shop Button */
.shop-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 35px;
    background: transparent;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.shop-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    transition: all 0.4s ease;
    z-index: -1;
}

.shop-btn:hover::before {
    left: 0;
}

.shop-btn:hover {
    color: #ffffff;
    border-color: #1a1a1a;
}

.shop-btn:active {
    transform: scale(0.98);
}

/* Center Text - Summer Sale */
.center-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    text-align: center;
}

.sale-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 62px !important;
    font-weight: 100;
    font-style: italic;
    color: #1a1a1a;
    letter-spacing: 5px;
    text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.8);
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .header {
        padding: 15px 25px;
    }

    .logo-text {
        font-size: 20px;
    }

    .banner-title {
        font-size: 28px;
    }

    .sale-text {
        font-size: 56px;
    }

    .header-right {
        gap: 15px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }

    .header-right {
        gap: 5px;
    }

    .icon-btn {
        padding: 4px;
    }

    .icon-btn svg {
        width: 18px;
        height: 18px;
    }

    .logo-text {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .logo-icon {
        font-size: 20px;
    }

    /* Mobile Banner Container */
    .banner-container {
        margin-top: 60px;
    }

    /* Mobile Banner Slider */
    .banner-slider {
        position: relative;
        width: 100%;
        min-height: 100vh;
    }

    .banner-slide {
        flex: 0 0 100%;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 100vh;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }

    .banner-slide.active {
        opacity: 1;
        z-index: 1;
    }

    .banner-content {
        bottom: 80px;
    }

    .banner-title {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .shop-btn {
        padding: 12px 28px;
        font-size: 11px;
    }

    .sale-text {
        font-size: 42px;
        letter-spacing: 3px;
    }

    /* Swipe Indicator */
    .banner-container::after {
        content: '';
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: rgba(26, 26, 26, 0.3);
        border-radius: 2px;
        z-index: 30;
    }
}

/* Responsive Design - Small Mobile */
@media (max-width: 480px) {
    .header {
        padding: 12px 15px;
    }

    .header-right {
        gap: 8px;
    }

    .icon-btn {
        padding: 5px;
    }

    .icon-btn svg {
        width: 16px;
        height: 16px;
    }

    .logo-text {
        font-size: 16px;
    }

    .banner-title {
        font-size: 20px;
    }

    .shop-btn {
        padding: 10px 24px;
        font-size: 10px;
    }

    .sale-text {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .banner-content {
        bottom: 70px;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .banner-title {
        font-size: 24px;
    }

    .sale-text {
        font-size: 88px;
    }

    .shop-btn {
        padding: 14px 20px;
        font-size: 12px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: #1a1a1a;
    color: #ffffff;
}

/* Menu Drawer */
.menu-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background-color: #f8f8f8;
    z-index: 2000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.menu-drawer.open {
    left: 0;
}

.menu-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.menu-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-logo .logo-icon {
    font-size: 20px;
    color: #1a1a1a;
}

.menu-logo .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #1a1a1a;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 32px;
    color: #1a1a1a;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-menu-btn:hover {
    color: #666;
}

.menu-list {
    list-style: none;
    padding: 20px 0;
}

.menu-item {
    padding: 0;
}

.menu-item > a {
    display: block;
    padding: 14px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.menu-item > a:hover {
    color: #666;
    background-color: #f0f0f0;
    padding-left: 30px;
}

.menu-item.has-submenu > a {
    position: relative;
}

.menu-item.has-submenu > a::after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.menu-item.has-submenu.open > a::after {
    transform: rotate(45deg);
}

.submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: #f0f0f0;
}

.submenu.open {
    max-height: 200px;
}

.submenu li a {
    display: block;
    padding: 12px 25px 12px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.submenu li a:hover {
    color: #1a1a1a;
    background-color: #e8e8e8;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

/* Responsive Menu Drawer */
@media (max-width: 480px) {
    .menu-drawer {
        width: 280px;
        left: -280px;
    }

    .menu-item > a {
        font-size: 13px;
        padding: 12px 20px;
    }

    .menu-item > a:hover {
        padding-left: 25px;
    }

    .submenu li a {
        font-size: 12px;
        padding: 10px 20px 10px 35px;
    }
}

/* Footer Styles */
footer {
    background-color: #f8f8f8;
    padding: 0;
    margin-top: 0;
}

.footer-top {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 25px 40px;
    border-bottom: 1px solid #e0e0e0;
    background-color: #ffffff;
}

.footer-item {
    text-align: center;
}

.footer-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    padding: 40px 40px;
    gap: 40px;
}

.footer-left {
    flex: 1;
}

.newsletter-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.email-input {
    width: 100%;
    max-width: 300px;
    padding: 12px 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.3s ease;
}

.email-input::placeholder {
    color: #999;
}

.email-input:focus {
    border-color: #1a1a1a;
}

.checkbox-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #1a1a1a;
    user-select: none;
    position: relative;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #1a1a1a;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.checkbox-container:hover .checkmark {
    border-color: #666;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #1a1a1a;
}

.checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark::after {
    display: block;
}

.subscribe-button {
    margin-top: 10px;
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.subscribe-button:hover {
    background-color: #333;
}

.footer-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #d0d0d0;
    border-radius: 50%;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: #1a1a1a;
    background-color: #1a1a1a;
    color: #ffffff;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.link-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-column li {
    margin-bottom: 8px;
}

.link-column a {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: #1a1a1a;
}

.footer-right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.qr-code {
    padding: 10px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.payment-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    border-color: #1a1a1a;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-main {
        flex-direction: column;
        padding: 30px 25px;
    }

    .footer-center {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-right {
        flex-direction: row;
        justify-content: center;
    }

    .footer-top {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }

    .footer-center {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .footer-right {
        flex-direction: column;
    }

    .payment-methods {
        justify-content: center;
    }
}

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

    .footer-item p {
        font-size: 11px;
    }

    .newsletter-section h3 {
        font-size: 18px;
    }

    .email-input {
        font-size: 12px;
        padding: 10px 12px;
    }

    .checkbox-group {
        gap: 15px;
    }

    .checkbox-container {
        font-size: 11px;
    }

    .subscribe-button {
        padding: 10px 25px;
        font-size: 11px;
    }
}

/* Women Page Styles */
.women-page {
    margin-top: 80px;
    padding: 40px;
    min-height: calc(100vh - 80px);
}

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

.page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.items-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #666;
}

/* Filter Section */
.filter-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sort-dropdown {
    position: relative;
}

.sort-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #1a1a1a;
    background-color: transparent;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-btn:hover {
    border-color: #1a1a1a;
}

.sort-options {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    min-width: 180px;
    z-index: 100;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sort-dropdown.active .sort-options {
    display: block;
}

.sort-option {
    padding: 12px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #1a1a1a;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.sort-option:hover {
    background-color: #f5f5f5;
}

.all-filters-btn {
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #1a1a1a;
    background-color: transparent;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.all-filters-btn:hover {
    border-color: #1a1a1a;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 40px 40px;
}

/* Product Card */
.product-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.4s ease;
}

.main-image {
    opacity: 1;
}

.hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .main-image {
    opacity: 0;
}

.product-card:hover .hover-image {
    opacity: 1;
}

.new-badge {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4px 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-container {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.star-icon {
    cursor: pointer;
    transition: stroke 0.2s ease;
}

.star-icon:hover {
    stroke: #666;
}

.product-info {
    padding: 0 5px;
}

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

.product-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 0.5px;
}

.product-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
}

.product-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #666;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.product-colors {
    display: flex;
    gap: 8px;
}

.color-option {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.color-option:hover {
    transform: scale(1.1);
}

/* Responsive Product Grid */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .women-page {
        margin-top: 60px;
        padding: 20px;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .items-count {
        order: 2;
    }

    .filter-section {
        width: 100%;
        justify-content: space-between;
        order: 3;
    }

    .page-title {
        font-size: 28px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 0 30px;
    }

    .product-name {
        font-size: 13px;
    }

    .product-description {
        font-size: 11px;
    }

    .product-price {
        font-size: 13px;
    }
}

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

    .page-title {
        font-size: 24px;
    }

    .new-badge {
        font-size: 9px;
        padding: 3px 10px;
    }
}
