/* ============================================
   RUPSARA CREATION — Main Stylesheet
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap");

:root {
    --crimson: #b5132a;
    --crimson-dk: #8a0e1f;
    --gold: #c9922a;
    --gold-lt: #e8b84b;
    --gold-pale: #fdf3e0;
    --pink: #cc2e76;
    --pink-lt: #f0a8c8;
    --deep: #1a0a12;
    --dark: #2d1420;
    --mid: #5c3046;
    --light: #fdf6f0;
    --white: #ffffff;
    --text: #3b1e2a;
    --text-muted: #7a5568;
    --shadow: 0 8px 40px rgba(181, 19, 42, 0.12);
    --shadow-lg: 0 20px 60px rgba(181, 19, 42, 0.18);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.65;
}

img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}

/* ---- Typography ---- */
.heading-serif {
    font-family: "Playfair Display", serif;
}
.heading-sc {
    font-family: "Cormorant Garamond", serif;
}

/* ---- Utility ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-pad {
    padding: 90px 0;
}
.text-center {
    text-align: center;
}
.text-gold {
    color: var(--gold);
}
.text-pink {
    color: var(--pink);
}
.text-crimson {
    color: var(--crimson);
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink);
    background: rgba(204, 46, 118, 0.09);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--deep);
    line-height: 1.18;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--crimson), var(--pink));
    color: var(--white);
    box-shadow: 0 6px 24px rgba(181, 19, 42, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(181, 19, 42, 0.45);
    background: linear-gradient(135deg, var(--crimson-dk), var(--crimson));
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    color: var(--deep);
    box-shadow: 0 6px 24px rgba(201, 146, 42, 0.35);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(201, 146, 42, 0.5);
}

.btn-dark {
    background: var(--deep);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--white);
    transition: color 0.2s;
    position: relative;
}
.site-header.scrolled .nav-links a {
    color: var(--text);
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--pink);
    transform: scaleX(0);
    transition: transform 0.25s;
}
.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.site-header.scrolled .hamburger span {
    background: var(--text);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../img/hero_puja_thali.png");
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
    transform: scale(1.04);
    animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1.04);
    }
    to {
        transform: scale(1.12);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 10, 18, 0.75) 0%, rgba(181, 19, 42, 0.4) 50%, rgba(201, 146, 42, 0.25) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--gold-lt);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 22px;
    animation: fadeUp 0.8s 0.15s ease both;
}

.hero-title .accent {
    color: var(--gold-lt);
    font-style: italic;
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 580px;
    animation: fadeUp 0.8s 0.3s ease both;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeUp 0.8s 0.45s ease both;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll .arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
    background: linear-gradient(90deg, var(--crimson), var(--pink), var(--gold), var(--pink), var(--crimson));
    background-size: 300% 100%;
    animation: gradShift 6s linear infinite;
    padding: 14px 0;
    overflow: hidden;
}

@keyframes gradShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 28s linear infinite;
    width: max-content;
}
.marquee-track span {
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0 32px;
    white-space: nowrap;
}
.marquee-track span.dot {
    color: rgba(255, 255, 255, 0.6);
    padding: 0 4px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories {
    background: var(--light);
}

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

.cat-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.cat-card:hover img {
    transform: scale(1.08);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 10, 18, 0.85) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
}

.cat-overlay h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 6px;
}

.cat-overlay span,
.cat-overlay a {
    font-size: 0.78rem;
    color: var(--gold-lt);
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--deep);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}

/* ============================================
   BEST SELLERS
   ============================================ */
.bestsellers {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: var(--transition);
    position: relative;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img img {
    transform: scale(1.07);
}

.product-tags {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.tag {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
}
.tag-amazon {
    background: #f90;
    color: #111;
}
.tag-handmade {
    background: var(--pink);
    color: var(--white);
}
.tag-wedding {
    background: var(--crimson);
    color: var(--white);
}

.product-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}
.product-wishlist:hover {
    background: var(--crimson);
    color: var(--white);
}

.product-info {
    padding: 16px 18px 18px;
}

.product-info h3 {
    font-family: "Playfair Display", serif;
    font-size: 0.98rem;
    color: var(--deep);
    margin-bottom: 6px;
    line-height: 1.35;
}

.product-stars {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--gold);
    margin-bottom: 10px;
}
.product-stars span {
    color: var(--text-muted);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.price-now {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--crimson);
}
.price-old {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.price-off {
    font-size: 0.72rem;
    font-weight: 700;
    color: #16a34a;
    background: #dcfce7;
    padding: 2px 8px;
    border-radius: 50px;
}

.product-btn {
    width: 100%;
    margin-top: 14px;
    background: linear-gradient(135deg, var(--crimson), var(--pink));
    color: var(--white);
    border: none;
    padding: 11px;
    border-radius: var(--radius-sm);
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.product-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--gold-pale);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 48%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.about-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--deep);
    margin-bottom: 20px;
    line-height: 1.2;
}
.about-title em {
    font-style: italic;
    color: var(--gold);
}

.about-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    margin: 20px 0 30px;
}
.about-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text);
}
.about-list li::before {
    content: "✦";
    color: var(--gold);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.about-stats {
    display: flex;
    gap: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.stat-num {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    color: var(--crimson);
    font-weight: 700;
    line-height: 1;
}
.stat-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ============================================
   WEDDING COLLECTION
   ============================================ */
.wedding-collection {
    background: var(--deep);
    overflow: hidden;
}

.wc-header {
    color: var(--white);
}
.wc-header .section-title {
    color: var(--white);
}
.wc-header .section-sub {
    color: rgba(255, 255, 255, 0.65);
}

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

.wc-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}
.wc-card:hover {
    transform: translateY(-6px);
}

.wc-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.wc-card:hover img {
    transform: scale(1.06);
}

.wc-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 22px 22px;
    background: linear-gradient(to top, rgba(10, 3, 7, 0.92) 0%, transparent 100%);
}
.wc-info h3 {
    font-family: "Playfair Display", serif;
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 6px;
}
.wc-info p {
    font-size: 0.82rem;
    color: var(--gold-lt);
}

.wc-cta {
    text-align: center;
    margin-top: 48px;
}
.text-white {
    color: #fff;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.why-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius);
    background: var(--light);
    border: 1px solid rgba(181, 19, 42, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--crimson), var(--pink));
    opacity: 0;
    transition: opacity 0.35s;
}
.why-card:hover::before {
    opacity: 1;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.why-card * {
    position: relative;
    z-index: 1;
}

.why-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--crimson), var(--pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
    color: #ffffff;
}
.why-card:hover .why-icon {
    background: rgba(255, 255, 255, 0.2);
}

.why-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.08rem;
    color: var(--deep);
    margin-bottom: 10px;
    transition: color 0.3s;
}
.why-card:hover h3 {
    color: var(--white);
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    transition: color 0.3s;
}
.why-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   CUSTOM ORDERS
   ============================================ */
.custom-orders {
    background: linear-gradient(135deg, var(--crimson-dk) 0%, var(--dark) 50%, var(--crimson-dk) 100%);
    position: relative;
    overflow: hidden;
}

.custom-orders::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 146, 42, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.custom-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.custom-text .section-tag {
    color: var(--gold-lt);
    background: rgba(201, 146, 42, 0.15);
}
.custom-text .section-title {
    color: var(--white);
}
.custom-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.custom-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin: 20px 0 34px;
}
.custom-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}
.custom-list li::before {
    content: "✦";
    color: var(--gold-lt);
    font-size: 0.65rem;
}

.custom-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.custom-img img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.custom-img-badge {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 14px 22px;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.custom-img-badge .badge-num {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    color: var(--crimson);
    font-weight: 700;
}
.custom-img-badge .badge-txt {
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ============================================
   GALLERY / INSTAGRAM
   ============================================ */
.gallery {
    background: var(--light);
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-hover {
    position: absolute;
    inset: 0;
    background: rgba(181, 19, 42, 0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.35s;
}
.gallery-item:hover .gallery-hover {
    opacity: 1;
}
.gallery-hover .ig-icon {
    font-size: 2rem;
}
.gallery-hover span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: unset;
}

/* ============================================
   SEO FOOTER CONTENT
   ============================================ */
.seo-content {
    background: var(--gold-pale);
    border-top: 1px solid rgba(201, 146, 42, 0.2);
}
.seo-inner {
    max-width: 860px;
    margin: 0 auto;
}
.seo-inner h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    color: var(--deep);
    margin-bottom: 18px;
    text-align: center;
}
.seo-inner p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.85;
    text-align: center;
}

/* ============================================
   SITE FOOTER
   ============================================ */
.site-footer {
    background: var(--deep);
    color: rgba(255, 255, 255, 0.72);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
    height: 52px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.75;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.7);
}
.footer-socials a:hover {
    background: var(--pink);
    color: var(--white);
}

.footer-col h4 {
    font-family: "Playfair Display", serif;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 18px;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col ul a {
    font-size: 0.86rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-col ul a:hover {
    color: var(--gold-lt);
}

.footer-newsletter p {
    font-size: 0.86rem;
    margin-bottom: 14px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.newsletter-form input {
    flex: 1;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-right: none;
    color: var(--white);
    font-size: 0.85rem;
    outline: none;
}
.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.newsletter-form button {
    padding: 11px 18px;
    background: var(--pink);
    border: none;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.2s;
}
.newsletter-form button:hover {
    background: var(--crimson);
}

.footer-keywords {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-keywords p {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.9;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
}
.footer-bottom-links a:hover {
    color: var(--gold-lt);
}

/* ============================================
   DECORATIVE DIVIDERS
   ============================================ */
.divider-ornament {
    text-align: center;
    margin: 0 auto 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--gold);
    font-size: 1.1rem;
}
.divider-ornament::before,
.divider-ornament::after {
    content: "";
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
}
.divider-ornament::after {
    background: linear-gradient(to left, transparent, var(--gold));
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.12);
    background: #1da851;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-pad {
        padding: 64px 0;
    }
    .nav-links,
    .nav-cta {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cat-grid .cat-card:last-child {
        grid-column: span 2;
    }
    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-img-float {
        display: none;
    }
    .wc-grid {
        grid-template-columns: 1fr;
    }
    .custom-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item.tall {
        grid-row: span 1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }
    .cat-grid {
        grid-template-columns: 1fr;
    }
    .cat-grid .cat-card:last-child {
        grid-column: span 1;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    .custom-list {
        grid-template-columns: 1fr;
    }
}
