@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&family=Oswald:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap");

/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --primary-color: #cd295d;
    /* Updated brand color */
    --accent-blue: #001f3f;
    /* Deep Blue */
    --gradient-bg: radial-gradient(circle at 30% 30%, #2c3e50 0%, #000000 100%);
    /* Adjusted later */
    --text-light: #f3f6fb;
    --text-muted: #c7d0dc;
    --transition: all 0.3s ease;

    --font-script: 'Caveat', cursive;
    --font-body: 'Sora', sans-serif;
    --bg-base: #0a1c35;
    --bg-overlay-start: rgba(7, 23, 50, 0.84);
    --bg-overlay-mid: rgba(19, 37, 80, 0.78);
    --bg-overlay-end: rgba(120, 71, 61, 0.68);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: #0a1c35;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    background-image: url("../images/background/gradient.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Keep glassmorphism colors consistent in browsers without backdrop-filter */
@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
    .search-box {
        background: rgba(16, 36, 58, 0.9);
    }

    .search-results {
        background: rgba(17, 37, 59, 0.98);
    }

    @media (max-width: 992px) {
        .nav-links {
            background: rgba(13, 30, 50, 0.98);
        }
    }
}

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

ul {
    list-style: none;
}

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

/* =========================================
   2. TYPOGRAPHY & UTILITIES
   ========================================= */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.section-padding {
    padding: 80px 0;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.page-header h1,
.hero-text h1 {
    font-family: var(--font-script);
    color: var(--primary-color);
}

.page-header {
    padding: 140px 0 70px !important;
}

.page-header h1.script-font {
    font-size: clamp(5.5rem, 8vw, 7.5rem) !important;
    line-height: 1.1;
}

/* =========================================
   3. HEADER & NAVBAR
   ========================================= */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition);
}

#header.scrolled {
    background: rgba(11, 26, 40, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo-link {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-link:hover {
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 200px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1001;
}

.search-box:focus-within {
    width: 320px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.search-box input {
    border: none;
    outline: none;
    width: 100%;
    padding-right: 10px;
    font-size: 0.9rem;
    background: transparent;
    color: #fff;
    transition: color 0.3s ease;
}

.search-box:focus-within input {
    color: #333;
}

.search-box i {
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-box:focus-within i {
    color: var(--primary-color);
}

/* Search Results Dropdown */
.search-results {
    position: absolute;
    top: 120%;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: none;
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.search-results.active {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.search-item {
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.2s ease;
    text-decoration: none;
    color: #333;
}

.search-item:last-child {
    border-bottom: none;
}

.search-item:hover {
    background: rgba(255, 215, 0, 0.1);
}

.search-item img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.search-item-info h4 {
    font-size: 0.9rem;
    margin: 0;
    color: #222;
    font-weight: 600;
}

.search-item-info p {
    font-size: 0.75rem;
    margin: 0;
    color: #666;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: transparent;
    overflow: hidden;
    padding-top: 56px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 48px;
}

.hero-text {
    flex: 1;
    padding-left: 20px;
}

.hero-text h1.script-font {
    font-family: var(--font-script);
    font-size: 6rem;
    line-height: 1.1;
    color: #fff;
    transform: rotate(-3deg);
    margin-bottom: 0px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text h2.brand-sub {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-top: -10px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-text p.hero-subtext {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.4;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

/* =========================================
   5. WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}

/* =========================================
   6. REST OF THE SECTIONS (Styles adapted)
   ========================================= */

/* Feature Grid adaptation */
.trust-bar {
    background: #ffffff;
    padding: 30px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.trust-bar p {
    color: #0b1a28 !important;
    font-weight: 600;
}

.client-logos span {
    font-family: var(--font-body);
}

/* Products */
.product-card {
    background: #fff;
    color: #333;
    border: none;
    border-radius: 10px;
}

.card-image {
    background: #f0f0f0;
}

.card-content h3 {
    color: #000;
}

.card-content p {
    color: #666;
}

/* Contact Form */
.contact-section {
    background: #050a10;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-control {
    background: #fff;
    color: #333;
}

.form-control:focus {
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background: #020406;
    border-top: 1px solid #1a2a3a;
}

.footer-brand h3 {
    color: #fff;
}

/* =========================================
   SHOWCASE GALLERY
   ========================================= */
.showcase-gallery {
    background: transparent;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(205, 41, 93, 0.4);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* =========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ========================================= */

/* Tablet & Small Desktop (992px and below) */
@media (max-width: 992px) {
    .navbar {
        padding: 0 20px;
    }

    .container {
        padding: 0 15px;
    }

    .section-padding {
        padding: 60px 0;
    }

    /* Hide search on tablet */
    .search-box {
        display: none;
    }

    /* Show hamburger */
    .hamburger {
        display: block;
        z-index: 1002;
    }

    /* Mobile Navigation */
    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        right: 20px;
        left: auto;
        width: min(260px, calc(100vw - 40px));
        height: auto;
        background: rgba(13, 27, 42, 0.96);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        transform: none;
        transition: opacity 0.2s ease, visibility 0.2s ease;
        z-index: 1001;
        padding: 8px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links li {
        opacity: 1;
        transform: none;
    }

    .nav-links li a {
        font-size: 1rem;
        padding: 12px 14px;
        display: block;
        min-height: 44px;
        border-radius: 8px;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        background: rgba(255, 255, 255, 0.08);
    }

    /* Hamburger Animation */
    .hamburger i {
        transition: all 0.3s ease;
    }

    .hamburger.active i::before {
        content: "X";
    }
    
    /* Hero Section - Tablet */
    .hero {
        min-height: 80vh;
        padding-top: 76px;
    }

    .hero-text h1.script-font {
        font-size: 4rem;
    }

    .hero-text h2.brand-sub {
        font-size: 3rem;
    }

    .hero-text p.hero-subtext {
        font-size: 1.2rem;
    }

    .hero-image {
        max-width: 400px;
        margin-top: 30px;
    }

    /* About Grid - Tablet */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .polaroid-frame {
        max-width: 350px;
    }

    /* Features Grid */
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Section Headers */
    .section-header h2,
    .section-header-center h2 {
        font-size: 2rem;
    }

    /* Apparel Text */
    .apparel-text-col {
        padding: 40px;
    }

    .apparel-text-col h2 {
        font-size: 2rem;
    }

    .apparel-text-col p {
        font-size: 1rem;
    }

    /* Gallery Grid - Tablet */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    .logo-link {
        font-size: 1.4rem;
        gap: 8px;
    }

    .logo-img {
        height: 35px;
    }

    /* Typography */
    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .hero-text h1.script-font {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .hero-text h2.brand-sub {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-text p.hero-subtext {
        font-size: 1rem;
        padding: 0 10px;
        line-height: 1.5;
    }

    /* Hero Layout */
    .hero {
        min-height: 58vh;
        padding-top: 60px;
        padding-bottom: 24px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 44px;
        gap: 10px;
    }

    .hero-text {
        padding: 0 14px;
        margin-bottom: 6px;
    }

    .hero-text h1 {
        margin-top: 0 !important;
    }

    .hero-image {
        display: block;
        max-width: 320px;
        margin: 8px auto 0;
    }

    /* Index hero sizing to match reference mobile layout */
    #home.hero {
        min-height: 100vh;
        padding-top: 64px;
        padding-bottom: 0;
    }

    #home .hero-container {
        padding-top: 24px;
        gap: 8px;
    }

    #home .hero-text {
        width: 100%;
        padding: 0 20px;
        text-align: left;
    }

    #home .hero-text h1 {
        font-size: clamp(4.6rem, 18vw, 7.5rem) !important;
        line-height: 0.95 !important;
        margin-top: 0 !important;
        text-align: left !important;
    }

    #home .hero-text h2.brand-sub {
        font-size: clamp(3rem, 12vw, 4.8rem) !important;
        line-height: 1 !important;
        margin-top: 8px !important;
        margin-bottom: 14px !important;
        text-align: left !important;
    }

    #home .hero-text p.hero-subtext {
        font-size: clamp(1.45rem, 5.2vw, 2rem) !important;
        line-height: 1.25 !important;
        margin-top: 0 !important;
        text-align: left !important;
        padding: 0 !important;
    }

    #home .hero-image {
        max-width: 96vw;
        margin: 0 auto;
        padding-top: 20px;
    }

    #home .hero-image img {
        width: 100%;
        max-width: 700px;
        margin-top: 0 !important;
    }

    /* About Section */
    .about-section {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .polaroid-frame {
        max-width: 300px;
        margin-bottom: 30px;
    }

    .brush-title {
        font-size: 1.6rem;
    }

    .highlight-text {
        font-size: 1rem;
    }

    .body-text {
        font-size: 0.95rem;
    }

    /* USP & Gift Grid */
    .usp-gift-grid {
        flex-direction: column;
        gap: 24px;
    }

    .gift-boxes-wrapper {
        justify-content: center;
    }

    .gift-boxes-wrapper img {
        max-width: 80%;
    }

    .usp-list li {
        font-size: 1rem;
    }

    .brush-title-small h3 {
        font-size: 1.2rem;
    }

    /* Features Grid */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    /* Gallery Grid - Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Trust Bar */
    .trust-content p {
        font-size: 1rem;
    }

    .slide {
        width: 120px;
    }

    .slide img {
        max-width: 90px;
    }

    .marquee-track {
        width: calc(120px * 18);
    }

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

        100% {
            transform: translateX(calc(-120px * 6));
        }
    }

    /* Place Order Section */
    .place-order-section {
        padding: 36px 0;
    }

    .section-padding {
        padding: 36px 0;
    }

    .section-header-center h2 {
        font-size: 2rem;
    }

    .section-header-center p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .enquiry-form-container {
        padding: 0 15px;
    }

    .form-control {
        padding: 12px;
        font-size: 0.95rem;
    }

    .btn-gold {
        width: 100%;
        padding: 14px 30px;
    }

    /* Footer */
    .main-footer {
        text-align: center;
    }

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

    .footer-col p {
        font-size: 0.9rem;
    }

    .social-icons {
        justify-content: center;
        margin-bottom: 15px;
    }

    .footer-links-inline {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 15px 0;
    }

    .footer-links-inline a {
        padding: 8px 0;
        display: block;
    }

    /* Apparel Zigzag */
    .apparel-row {
        height: auto;
        flex-direction: column !important;
    }

    .apparel-img-col,
    .apparel-text-col {
        min-width: 100%;
        max-width: 100%;
    }

    .apparel-text-col {
        padding: 30px 20px;
    }

    .apparel-text-col h2 {
        font-size: 1.8rem;
    }

    .apparel-text-col p {
        font-size: 0.95rem;
        max-width: 100%;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }

    /* Scroll Down Indicator */
    .scroll-down {
        display: none;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {

    /* Extra small typography adjustments */
    .hero-text h1.script-font {
        font-size: 2.5rem;
    }

    .hero-text h2.brand-sub {
        font-size: 1.8rem;
    }

    .hero-text p.hero-subtext {
        font-size: 1rem;
    }

    .section-header h2,
    .section-header-center h2 {
        font-size: 1.8rem;
    }

    .brush-title {
        font-size: 1.4rem;
    }

    .apparel-text-col h2 {
        font-size: 1.5rem;
    }

    .navbar {
        padding: 0 15px;
    }

    .container {
        padding: 0 10px;
    }

    .section-padding {
        padding: 40px 0;
    }

    /* Ensure minimum touch targets */
    .btn-primary,
    .btn-gold,
    .btn-details {
        min-height: 44px;
        padding: 12px 25px;
    }

    .nav-links li a {
        min-height: 50px;
        font-size: 1.3rem;
    }

    /* Form adjustments */
    .form-control {
        min-height: 44px;
    }

    /* Polaroid smaller */
    .polaroid-frame {
        max-width: 250px;
    }

    .doodle-sun {
        font-size: 2rem;
    }
}

/* Extra Small Devices (320px) */
@media (max-width: 375px) {
    .hero-text h1.script-font {
        font-size: 2.2rem;
    }

    .hero-text h2.brand-sub {
        font-size: 1.5rem;
    }

    .section-header h2,
    .section-header-center h2 {
        font-size: 1.5rem;
    }

    .brush-title {
        font-size: 1.2rem;
    }

    .usp-list li {
        font-size: 0.9rem;
    }
}

/* =========================================
   7. ABOUT / USP SECTION
   ========================================= */
.about-section {
    background: transparent;
    /* Seamlessly flows from Hero if hero has gradient, or use same gradient */
    position: relative;
    padding-top: 50px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 8px;
}

/* Polaroid Effect */
.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 160px 0 0;
    margin: 0 auto;
    max-width: 100%;
}

.about-image-wrapper img {
    width: 100%;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.polaroid-frame {
    background: #fff;
    padding: 15px 15px 50px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: rotate(-5deg);
    transition: var(--transition);
    max-width: 400px;
    margin: 0 auto;
}

.polaroid-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.doodle-sun {
    position: absolute;
    bottom: -30px;
    left: 20px;
    font-size: 3rem;
    color: #fff;
    opacity: 0.8;
    animation: spin 10s linear infinite;
}

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

/* Text Content */
.brush-title-wrapper,
.brush-title-small {
    position: relative;
    margin-bottom: 25px;
}

.brush-title-wrapper::before,
.brush-title-small::before {
    content: none;
}

.brush-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    width: 100%;
    max-width: none;
    min-height: 102px;
    padding: 20px 60px;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #fdf6ea 100%);
    border: 1px solid rgba(205, 41, 93, 0.18);
    border-radius: 28px;
    box-shadow: 0 14px 34px rgba(11, 26, 40, 0.1);
    box-sizing: border-box;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.about-content {
    width: 100%;
}

.brush-title-wrapper:hover {
    transform: translateY(-4px);
    background: linear-gradient(180deg, #fff7ef 0%, #fde4ec 100%);
    border-color: rgba(205, 41, 93, 0.35);
    box-shadow: 0 20px 42px rgba(11, 26, 40, 0.16);
}

.brush-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.35rem;
    color: #0b1a28;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    text-align: center;
    line-height: 1.2;
    width: 100%;
}

.highlight-text {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 14px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.highlight-text a {
    color: #3498db;
    /* Link blue */
    text-decoration: underline;
}

.body-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}


/* Features Section */
ghdftgh .features {
    background: #050a10;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.feature-card {
    padding: 0 15px;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-card h3::before {
    content: '';
    /* Optional bullet or distinct marker if needed, but removing icons */
    /* For now, just simple text */
}

.feature-card p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* USP & Gift Grid */
.usp-gift-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Center vertically */
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 0;
    padding-top: 150px;
}

.usp-wrapper {
    flex: 1;
    min-width: 300px;
}

.brush-title-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    padding: 18px 46px;
    background: linear-gradient(180deg, #ffffff 0%, #fdf6ea 100%);
    border: 1px solid rgba(205, 41, 93, 0.18);
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(11, 26, 40, 0.1);
    margin-bottom: 30px;
    box-sizing: border-box;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.brush-title-small:hover {
    transform: translateY(-4px);
    background: linear-gradient(180deg, #fff7ef 0%, #fde4ec 100%);
    border-color: rgba(205, 41, 93, 0.35);
    box-shadow: 0 18px 34px rgba(11, 26, 40, 0.15);
}

/* Remove the pseudo-element brush stroke if it exists/conflicts or simplified above */
.brush-title-small::before {
    display: none;
}

.brush-title-small h3 {
    font-family: 'Oswald', sans-serif;
    color: #0b1a28;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.usp-list {
    list-style: none;
    padding: 0;
}

.usp-list li {
    font-size: 1.3rem;
    /* Larger text */
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.usp-list li i {
    font-size: 0.6rem;
    /* Smaller, cleaner bullet */
    color: var(--primary-color);
}


.trust-bar {
    background: #ffffff;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.trust-content p {
    font-size: 1.3rem;
    color: #0b1a28;
    margin-bottom: 40px;
    font-weight: 600;
}


.client-logos-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-track {
    display: flex;
    width: calc(200px * 18);
    /* 6 logos * 3 sets * width approx */
    animation: scroll 40s linear infinite;
}

.slide {
    width: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.slide img {
    max-width: 150px;
    height: auto;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.slide img:hover {
    opacity: 1;
}

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

    100% {
        transform: translateX(calc(-200px * 6));
    }

    /* Scroll by the width of one set of 6 logos */
}

.usp-list {
    margin-top: 20px;
}

.usp-list li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.usp-list li i {
    font-size: 0.4rem;
    color: #fff;
}

.gift-boxes-wrapper {
    flex: 1.5;
    display: flex;
    justify-content: flex-end;
}

.gift-boxes-wrapper img {
    max-width: 100%;
    margin-top: 0;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

@media (max-width: 900px) {

    .about-grid,
    .usp-gift-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: center;
        text-align: left;
    }

    .gift-boxes-wrapper {
        justify-content: center;
    }

    .gift-boxes-wrapper img {
        margin-top: 0;
    }

    .brush-title {
        font-size: 1.8rem;
    }

    .polaroid-frame {
        margin-bottom: 30px;
    }

    .about-content {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100%;
        padding: 10px 0 0;
    }

    .brush-title-wrapper {
        display: flex;
        width: 100%;
        margin-bottom: 12px;
        min-height: 96px;
        padding: 18px 34px;
    }

    .brush-title {
        font-size: 1.8rem;
        display: block;
    }

    .highlight-text,
    .body-text {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #ccc;
        margin-bottom: 10px;
    }
}

/* =========================================
   9. PLACE ORDER SECTION & FOOTER
   ========================================= */
.place-order-section {
    padding: 80px 0;
    background: transparent;
    text-align: center;
    color: #fff;
}

.section-header-center h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    /* Changed to white */
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.section-header-center p {
    color: #ccc;
    /* Changed to light gray */
    margin-bottom: 40px;
}

.enquiry-form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.half-width {
    flex: 1;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Subtle border */
    background: rgba(255, 255, 255, 0.05);
    /* Transparent dark bg */
    border-radius: 4px;
    font-size: 1rem;
    color: #fff;
    /* White text input */
    transition: border-color 0.3s;
}

.form-control::placeholder {
    color: #aaa;
    /* Lighter placeholder */
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.btn-gold {
    background: #cd295d;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-gold:hover {
    background: #b02350;
}

/* =========================================
   10. MAIN FOOTER
   ========================================= */
.main-footer {
    background: #051424;
    /* Dark blue */
    color: #fff;
    position: relative;
}

/* Subscribe Section */
.subscribe-section {
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.subscribe-section h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.subscribe-section p {
    color: #ccc;
    margin-bottom: 30px;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #334252;
    background: #091c2e;
    color: #fff;
    border-radius: 4px;
}

.subscribe-form button {
    background: #cd295d;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

/* Footer Info Grid */
.footer-info {
    padding: 60px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
    /* Default center for mobile/all */
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #fff;
}

.footer-col i {
    margin-right: 10px;
    color: #fff;
}

.footer-links-inline {
    margin-bottom: 15px;
}

.footer-links-inline a {
    color: #fff;
    font-weight: 600;
    margin: 0 10px;
    text-decoration: none;
}

.social-icons {
    display: flex;
    justify-content: center;
    /* Center social icons */
    gap: 15px;
    margin-bottom: 15px;
}

.social-icons a {
    font-size: 1.2rem;
    color: #fff;
    transition: all 0.3s;
    opacity: 0.8;
}

.social-icons a:hover {
    color: var(--primary-color);
    background: transparent;
    opacity: 1;
    transform: translateY(-3px);
}

.social-handle {
    font-weight: 600;
    margin-bottom: 5px;
}

.credit span {
    color: #cd295d;
    font-weight: bold;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .section-header-center {
        text-align: left;
    }

    .main-footer, .footer-grid {
        text-align: left;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .social-icons {
        justify-content: flex-start;
    }
}

/* =========================================
   GLOBAL MOBILE OPTIMIZATIONS
   ========================================= */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    body {
        background-image: url("../images/background/gradient.png");
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        line-height: 1.55;
    }

    .page-header {
        padding: 110px 0 50px !important;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .page-header h1.script-font {
        font-size: clamp(2.6rem, 10vw, 3.6rem) !important;
    }

    .page-header p {
        font-size: 0.98rem;
    }

    .section-padding {
        padding: 44px 0;
    }

    .container {
        padding: 0 16px;
    }

    .navbar {
        padding: 0 20px;
    }

    .hero-text h1.script-font {
        font-size: 3rem;
    }

    .hero-text h2.brand-sub {
        font-size: 2rem;
    }

    .hero-text p.hero-subtext {
        font-size: 1rem;
    }

    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .detail-grid,
    .product-detail-grid,
    .product-item {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .product-image img {
        height: auto;
    }

    .section-header h2,
    .section-header-center h2 {
        font-size: 1.8rem;
    }

    .section-header-center p {
        font-size: 0.95rem;
    }

    /* Hide Our Products gallery on mobile */
    .showcase-gallery {
        display: none;
    }
}

.apparel-zigzag-section {
    padding: 0;
    overflow-x: hidden;
}

.apparel-row {
    display: flex;
    flex-wrap: wrap;
    min-height: auto;
    overflow: visible;
}

.apparel-row:nth-child(even) {
    flex-direction: row-reverse;
}

.apparel-img-col,
.apparel-text-col {
    flex: 1;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}

.apparel-img-col {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.apparel-img-col img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    display: block;
}

.apparel-row:hover .apparel-img-col img {
    transform: scale(1.05);
}

.apparel-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 20px;
    background: #fff;
}

.apparel-row:nth-child(even) .apparel-text-col {
    background: #fff;
}

.apparel-text-col h2 {
    font-size: 1.8rem;
    color: #0b1a28;
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 700;
}

.apparel-text-col p {
    font-size: 0.95rem;
    color: #0b1a28;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 100%;
}

.btn-details {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-details:hover {
    background: var(--primary-color);
    color: #0b1a28;
}

/* Desktop/Tablet - Side by side layout */
@media (min-width: 768px) {
    .apparel-row {
        height: 45vh;
        min-height: 400px;
    }

    .apparel-img-col {
        flex: 0 0 30%;
        max-width: 30%;
        min-width: 0;
        width: auto;
    }

    .apparel-text-col {
        flex: 0 0 70%;
        max-width: 70%;
        min-width: 0;
        width: auto;
        padding: 60px;
    }

    .apparel-text-col h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .apparel-text-col p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        max-width: 500px;
    }
}

/* =========================================
   HOME PAGE PREMIUM OVERHAUL
   ========================================= */

/* Hero Section Enhancements */
.hero-orb {
    display: none; /* Removed orb */
}

/* Static Gradient Text (Removed Shimmer) */
.shimmer-text {
    background: linear-gradient(90deg, #EBAC36, #f3c158);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Glass Metallic Buttons (Subtle hover) */
.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-glass {
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-glass.primary {
    background: rgba(205, 41, 93, 0.8);
    border-color: rgba(205, 41, 93, 1);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-glass.primary:hover {
    background: rgba(205, 41, 93, 1);
}

/* Bento Box Grid System for USPs */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.bento-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.bento-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(205, 41, 93, 0.4);
}

.bento-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.bento-card:hover .bento-icon {
    background: var(--primary-color);
    color: #fff;
}

.bento-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

/* Feature Grid Enhanced (Why Choose Us) - Subtle */
.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.feature-card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    transition: color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(205, 41, 93, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card:hover .feature-card-icon {
    color: #fff;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}
