/* ========================================
   HOME PAGE CUSTOM STYLES
   ======================================== */

/* Typography Override */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', serif;
}

/* ========================================
   PROMOTIONAL TOP BAR
   ======================================== */

.promo-bar {
    background: #0a0a1f;
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1001;
}

.promo-text-container {
    position: relative;
    height: 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.promo-text.active {
    opacity: 1;
}

.promo-text i {
    font-size: 16px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* ========================================
   HEADER NAVIGATION FIXES
   ======================================== */

/* Desktop Navigation */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
}

/* Dropdown Styling */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-item:hover {
    background: var(--light-bg);
    color: var(--accent-color);
    padding-left: 25px;
}

/* Header Icons Alignment */
.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-icons>* {
    display: flex;
    align-items: center;
}

/* Enhanced Cart Icon */
.cart-icon-wrapper {
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.cart-icon-circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cart-icon-circle:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(239, 48, 147, 0.3);
}

.cart-icon-circle i {
    font-size: 18px;
    color: white;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: cartBadgePop 0.3s ease;
}

@keyframes cartBadgePop {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Enhanced Profile Icon */
.profile-dropdown {
    display: flex;
    align-items: center;
}

.profile-icon-wrapper {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.profile-icon-circle {
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.profile-icon-circle:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(40, 32, 86, 0.3);
}

.profile-icon-circle i {
    font-size: 18px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.profile-icon-circle:hover i {
    color: white;
}

/* Hide dropdown menu by default */
@media (min-width: 1024px) {
    .navbar-collapse {
        display: flex !important;
        flex: 1;
        justify-content: center;
    }
}

/* Search Icon Styling */
.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navbar Container */
.navbar {
    padding: 15px 0;
}

.navbar>.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Ensure proper spacing */
.navbar-brand {
    margin-right: 0;
    text-decoration: none;
    white-space: nowrap;
}

/* ========================================
   PROFILE DROPDOWN
   ======================================== */

.profile-dropdown {
    position: relative;
}

.profile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 15px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.profile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-menu-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 25px 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.profile-avatar i {
    font-size: 24px;
    color: white;
}

.profile-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.profile-info p {
    font-size: 13px;
    margin: 0;
    opacity: 0.9;
}

.profile-menu-items {
    padding: 10px 0;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.profile-menu-item:hover {
    background: var(--light-bg);
    color: var(--accent-color);
    padding-left: 25px;
}

.profile-menu-item i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.profile-menu-item.logout {
    border-top: 1px solid #f0f0f0;
    margin-top: 5px;
    padding-top: 15px;
}

.profile-menu-item.logout:hover {
    background: #fff5f5;
    color: #ff4757;
}

/* Mobile Profile Dropdown */
@media (max-width: 1023px) {
    .profile-menu {
        right: 0;
        left: auto;
    }
}

/* ========================================
   HERO CAROUSEL
   ======================================== */

.hero-carousel {
    width: 100%;
    height: 70vh;
    min-height: 500px;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    background: var(--accent-color);
    color: white;
}

/* Swiper Navigation */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.heroSwiper .swiper-button-next:after,
.heroSwiper .swiper-button-prev:after {
    font-size: 20px;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: white;
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* ========================================
   BESTSELLERS SECTION
   ======================================== */

.bestsellers-section {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.bestsellersSwiper {
    padding: 20px 0 60px;
}

.bestsellersSwiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

/* Product Card Enhancements */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.product-image-container {
    border-radius: 12px 12px 0 0;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-header {
    margin-bottom: 15px;
}

.product-name-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-name-link:hover .product-name {
    color: var(--accent-color);
}

.product-name {
    font-size: 1.05rem;
    min-height: 50px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.product-price {
    margin-top: 5px;
}

.product-specs {
    flex: 1;
    margin-bottom: 20px;
}

.spec-row {
    padding: 6px 0;
    font-size: 0.875rem;
}

.spec-label {
    color: #666;
    font-weight: 600;
}

.spec-value {
    color: var(--primary-color);
    font-weight: 500;
    text-align: right;
}

.product-actions {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.bestsellersSwiper .swiper-button-next,
.bestsellersSwiper .swiper-button-prev {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.45);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.bestsellersSwiper .swiper-button-next:after,
.bestsellersSwiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* ========================================
   PROMISE SECTION
   ======================================== */

.promise-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.promise-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.promise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.promise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.promise-card:hover .promise-icon {
    transform: scale(1.1) rotate(5deg);
}

.promise-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.promise-text {
    color: #666;
    line-height: 1.6;
}

/* ========================================
   SHOP BY YOUR LOOK SECTION
   ======================================== */

.shop-by-look-section {
    padding: 80px 0;
    background: white;
}

.look-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.look-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.look-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.look-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.look-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.look-card:hover .look-image {
    transform: scale(1.1);
}

.look-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(40, 32, 86, 0.95), transparent);
    padding: 30px 20px;
    color: white;
    transition: all 0.3s ease;
}

.look-card:hover .look-overlay {
    padding-bottom: 40px;
}

.look-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.look-description {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.look-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--accent-color);
    transition: gap 0.3s ease;
}

.look-card:hover .look-cta {
    gap: 12px;
}

/* ========================================
   CUSTOM ORDER SECTION
   ======================================== */

.custom-order-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.custom-order-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="200" cy="100" r="300" fill="rgba(255,255,255,0.05)"/><circle cx="1000" cy="500" r="400" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat center;
    background-size: cover;
}

.custom-order-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.custom-order-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.custom-order-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.custom-order-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-custom-order {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-custom-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    background: var(--accent-color);
    color: white;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.testimonialsSwiper {
    padding: 20px 0 60px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-stars i {
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.author-location {
    font-size: 0.9rem;
    color: #999;
}

.testimonialsSwiper .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.3;
}

.testimonialsSwiper .swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
}



/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--primary-color); /* #282056 */
    color: white;
    padding: 70px 0 30px;
    font-size: 0.95rem; /* Base size */
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Brand Column specific styles */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.footer-logo i {
    font-size: 36px;
    color: white;
    background: linear-gradient(135deg, #ef3093, transparent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.brand-text {
    font-size: 28px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.5px;
    color: white;
}
.brand-text em {
    font-size: 20px;
    font-weight: 400;
    color: var(--accent-color);
    font-style: italic;
    font-family: 'Poppins', serif; /* Script-like proxy */
}

.brand-tagline {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}
.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}
.contact-info i {
    color: white;
    opacity: 1;
    font-size: 16px;
    width: 20px;
}

/* Titles and links */
.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--accent-color); /* Hot pink */
}

.footer-text {
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15); /* Circle background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.social-icons i {
    font-size: 16px;
}

.social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input {
    padding: 14px 20px;
    border: none;
    background: white;
    color: var(--text-dark);
    font-size: 0.95rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: #999;
}

.btn-subscribe {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 14px 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background: #d4227d;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.copyright {
    opacity: 0.8;
    font-size: 0.85rem;
}


.payment-icons {
    display: flex;
    gap: 10px;
    font-size: 24px;
    opacity: 0.9;
}

/* ========================================
   MODALS
   ======================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 15px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    transform: rotate(90deg);
    background: var(--primary-color);
}

.modal-content {
    padding: 40px;
}

.modal-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Look Gallery Modal */
.look-gallery-modal {
    max-width: 1200px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Custom Order Modal */
.custom-order-modal {
    max-width: 700px;
}

.custom-order-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit-custom {
    width: 100%;
    background: var(--accent-color);
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.btn-submit-custom:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.empty-cart i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.empty-cart p {
    font-size: 1.1rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Desktop view - show regular navigation */
@media (min-width: 1024px) {
    .navbar-toggler {
        display: none !important;
    }

    .navbar-collapse {
        display: flex !important;
    }

    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Tablet and Mobile - hide desktop nav, show mobile menu button */
@media (max-width: 1023px) {
    .navbar-collapse {
        display: none !important;
    }

    .navbar-toggler {
        display: block !important;
        background: transparent;
        border: none;
        color: var(--primary-color);
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
    }

    .navbar>.container {
        flex-wrap: nowrap;
    }

    .navbar-brand {
        order: 1;
    }

    .header-icons {
        order: 2;
        gap: 15px;
    }

    .navbar-toggler {
        order: 3;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .promise-grid {
        grid-template-columns: 1fr;
    }

    .look-grid {
        grid-template-columns: 1fr;
    }

    .custom-order-title {
        font-size: 2rem;
    }

    .custom-order-text {
        font-size: 1rem;
    }

    .inspiration-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .modal-title {
        font-size: 1.8rem;
    }

    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
        display: none;
    }

    /* Promo Bar on Mobile */
    .promo-bar {
        padding: 10px 15px;
        font-size: 12px;
    }

    .promo-text-container {
        height: 20px;
    }

    .promo-text {
        font-size: 12px;
    }

    .promo-text i {
        font-size: 14px;
    }

    /* Header Icons on Mobile */
    .header-icons {
        gap: 10px;
    }

    .cart-icon-circle,
    .profile-icon-circle {
        width: 40px;
        height: 40px;
    }

    .cart-icon-circle i,
    .profile-icon-circle i {
        font-size: 16px;
    }

    .cart-badge {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn-hero,
    .btn-custom-order {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .promise-card {
        padding: 30px 20px;
    }

    .look-image-wrapper {
        height: 300px;
    }

    .custom-order-section {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 30px 20px;
    }
}