/* ===========================
   D'Maye Fashion - Minimal Design
   =========================== */

/* Color Variables */
:root {
    --navy: rgba(0, 41, 147, 1);
    --golden: rgba(188, 158, 80, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1f2937;
    line-height: 1.6;
}

/* Custom Button Styles */
.custom-btn {
    background-color: var(--navy);
    color: var(--golden);
    padding: 14px 36px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
}

.custom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 41, 147, 0.2);
}

.custom-btn-white {
    background-color: white;
    color: #1f2937;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
}

.custom-btn-white:hover {
    background-color: var(--navy);
    color: var(--golden);
}

/* Navigation Links */
.nav-link {
    color: #4b5563;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #1f2937;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--navy);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Minimal Product Card */
.minimal-product-card {
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.minimal-product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background-color: #f9fafb;
    margin-bottom: 12px;
}

.minimal-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.minimal-product-card:hover .minimal-product-image img {
    transform: scale(1.05);
}

/* Featured Products Section */
.featured-products-section {
    position: relative;
}

.featured-product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.featured-product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0, 41, 147, 0.08);
}

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

.featured-product-card:hover .featured-product-image img {
    transform: scale(1.1) rotate(2deg);
}

.featured-product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 41, 147, 0) 0%, rgba(188, 158, 80, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.featured-product-card:hover .featured-product-overlay {
    opacity: 1;
}

.featured-product-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--navy);
    color: var(--golden);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    box-shadow: 0 8px 24px rgba(0, 41, 147, 0.25);
}

.featured-product-card:hover .featured-product-btn {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.featured-product-btn:hover {
    background-color: var(--golden);
    color: var(--navy);
    transform: translateY(-4px) scale(1);
}

.featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--golden) 0%, #d4a574 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(188, 158, 80, 0.3);
}

.featured-product-card:hover .featured-badge {
    opacity: 1;
    transform: translateY(0);
}

.featured-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.featured-product-name {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.featured-product-card:hover .featured-product-name {
    color: var(--navy);
}

.featured-product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    letter-spacing: 0.5px;
}

.featured-view-all {
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.featured-view-all:hover {
    background-color: rgba(188, 158, 80, 0.1);
    gap: 8px;
}

/* Best Selling Products Section */
.best-selling-section {
    background: linear-gradient(135deg, rgba(0, 41, 147, 0.02) 0%, rgba(188, 158, 80, 0.02) 100%);
}

.best-selling-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.best-selling-card:hover {
    transform: translateY(-16px) rotateY(2deg);
    box-shadow: 0 16px 48px rgba(0, 41, 147, 0.15);
}

.best-selling-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.best-selling-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.best-selling-card:hover .best-selling-image-wrapper img {
    transform: scale(1.15) translateY(-8px);
}

.best-selling-label {
    position: absolute;
    top: 12px;
    right: -50px;
    background: linear-gradient(135deg, var(--navy) 0%, rgba(0, 41, 147, 0.9) 100%);
    color: var(--golden);
    padding: 8px 40px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    transform: rotate(45deg);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 16px rgba(0, 41, 147, 0.3);
    text-transform: uppercase;
}

.best-selling-card:hover .best-selling-label {
    opacity: 1;
    right: -25px;
}

.best-selling-quick-view {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: var(--navy);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    border: 2px solid var(--navy);
    letter-spacing: 0.5px;
}

.best-selling-card:hover .best-selling-quick-view {
    opacity: 1;
    bottom: 16px;
}

.best-selling-quick-view:hover {
    background-color: var(--navy);
    color: white;
}

.best-selling-content {
    padding: 16px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.best-selling-category {
    font-size: 11px;
    color: var(--golden);
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.best-selling-name {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.best-selling-card:hover .best-selling-name {
    color: var(--navy);
}

.best-selling-price-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.best-selling-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.5px;
}

.best-selling-discount {
    font-size: 12px;
    font-weight: 700;
    color: #ef4444;
    background-color: rgba(239, 68, 68, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

.best-selling-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.best-selling-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
}

.best-selling-rating i {
    color: var(--golden);
    font-size: 12px;
}

.best-selling-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f3f4f6;
    border: none;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.best-selling-icon-btn:hover {
    background-color: var(--golden);
    color: white;
    transform: scale(1.1);
}

.best-selling-view-all {
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.best-selling-view-all:hover {
    background-color: rgba(0, 41, 147, 0.1);
    gap: 8px;
}

/* Category Banners */
.category-banner-large,
.category-banner-small {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.category-banner-large {
    height: 600px;
}

.category-banner-small {
    height: 290px;
}

.category-banner-large img,
.category-banner-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-banner-large:hover img,
.category-banner-small:hover img {
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* Minimal Testimonial Card */
.minimal-testimonial-card {
    background: white;
    padding: 28px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.minimal-testimonial-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Footer */
.footer-link {
    color: #6b7280;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #1f2937;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--navy);
    color: var(--golden);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem !important;
    }

    .category-banner-large {
        height: 400px;
    }

    .category-banner-small {
        height: 250px;
    }

    .banner-overlay {
        padding: 24px;
    }

    .banner-overlay h3 {
        font-size: 1.5rem !important;
    }
}

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

/* Focus States */
button:focus,
a:focus {
    outline: 2px solid var(--golden);
    outline-offset: 2px;
}

/* Loading State */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(188, 158, 80, 0.3);
    border-radius: 50%;
    border-top-color: var(--golden);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
/* Casual Selection Banner */
.casual-selection-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.casual-selection-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.casual-selection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.casual-selection-content {
    position: absolute;
    top: 60px;
    right: 60px;
    max-width: 450px;
    z-index: 10;
}

.casual-selection-content h2 {
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 768px) {
    .casual-selection-banner {
        height: 400px;
    }

    .casual-selection-content {
        top: 40px;
        right: 20px;
        left: 20px;
        max-width: 100%;
    }

    .casual-selection-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .casual-selection-banner {
        height: 350px;
    }

    .casual-selection-content {
        top: 30px;
        right: 16px;
        left: 16px;
    }

    .casual-selection-content h2 {
        font-size: 1.75rem;
    }
}

/* ===========================
   HERO SECTION (SLIDER)
   =========================== */

.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

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

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 40%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    padding: 40px 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Navigation Arrows */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    font-size: 18px;
}

.hero-nav-btn:hover {
    background-color: var(--navy);
    color: var(--golden);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

/* Slider Dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-dot.active {
    background-color: var(--navy);
    border-color: var(--golden);
    width: 12px;
    height: 12px;
}

.hero-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-section {
        height: 500px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-content {
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 450px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-content {
        max-width: 100%;
        padding: 30px 0;
    }

    .hero-slide-bg::after {
        background: linear-gradient(to right, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.6) 60%, transparent 100%);
    }

    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-prev {
        left: 15px;
    }

    .hero-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 400px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-subtitle br {
        display: none;
    }
}

/* ===========================
   CATEGORY BANNERS
   =========================== */

.category-banner-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    background-color: #f3f4f6;
}

.category-banner-card.large {
    height: 600px;
}

.category-banner-card.small {
    height: 290px;
}

.category-banner-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-banner-card:hover img {
    transform: scale(1.05);
}

.category-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 2;
    /* background: linear-gradient(to top, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 60%, transparent 100%); */
}

.category-banner-card.small .category-banner-content {
    padding: 30px;
}

.category-banner-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6b7280;
    margin-bottom: 8px;
    font-weight: 500;
}

.category-banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.category-banner-card.small .category-banner-title {
    font-size: 2rem;
}

.category-banner-text {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 16px;
}

.category-banner-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}

.category-banner-link:hover {
    color: var(--navy);
    text-decoration-color: var(--golden);
    transform: translateX(4px);
}

.category-banner-link i {
    transition: transform 0.3s ease;
}

.category-banner-link:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .category-banner-card.large {
        height: 500px;
    }

    .category-banner-card.small {
        height: 250px;
    }

    .category-banner-title {
        font-size: 2rem;
    }

    .category-banner-card.small .category-banner-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .category-banner-card.large {
        height: 400px;
    }

    .category-banner-card.small {
        height: 300px;
    }

    .category-banner-content {
        padding: 30px;
    }

    .category-banner-card.small .category-banner-content {
        padding: 24px;
    }

    .category-banner-title {
        font-size: 1.75rem;
    }

    .category-banner-card.small .category-banner-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .category-banner-card.large,
    .category-banner-card.small {
        height: 350px;
    }

    .category-banner-content {
        padding: 24px;
    }

    .category-banner-title {
        font-size: 1.5rem;
    }

    .category-banner-card.small .category-banner-title {
        font-size: 1.25rem;
    }

    .category-banner-text {
        font-size: 0.85rem;
    }
}


.menuactive .active{
    color: var(--navy-dark);
    font-weight: 500;
}
