/* =========================================================
   SHRI VATSADARBAR
   PREMIUM FASHION WEBSITE
   MASTER STYLESHEET
   ========================================================= */


/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {

    --wine: #4b0713;
    --wine-dark: #35040d;
    --wine-soft: #6c1b28;

    --gold: #b88932;
    --gold-light: #d7b46a;
    --gold-pale: #ead9b5;

    --ivory: #fbf8f3;
    --cream: #f5efe7;
    --footer-cream: #f7f2e9;
    --white: #ffffff;

    --text: #191515;
    --text-soft: #665d58;
    --border: #e7ddd1;

    --shadow-soft:
        0 10px 35px rgba(63, 32, 15, 0.08);

    --shadow-hover:
        0 20px 50px rgba(63, 32, 15, 0.14);

    --serif:
        "Cormorant Garamond",
        Georgia,
        serif;

    --sans:
        "DM Sans",
        Arial,
        sans-serif;

    --container: 1320px;

    --transition:
        0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   RESET
   ========================================================= */

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


html {
    scroll-behavior: smooth;
}


body {
    background: var(--ivory);
    color: var(--text);

    font-family: var(--sans);

    font-size: 15px;
    line-height: 1.7;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


body.menu-open {
    overflow: hidden;
}


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


a {
    color: inherit;
    text-decoration: none;
}


button,
input {
    font: inherit;
}


button {
    cursor: pointer;
}


.container {
    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   ANNOUNCEMENT BAR
   ========================================================= */

.announcement-bar {
    background: var(--wine);
    color: #ffffff;

    min-height: 38px;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.035em;
}


.announcement-inner {
    min-height: 38px;

    width: min(
        calc(100% - 40px),
        1450px
    );

    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    position: relative;
}


.announcement-inner span {
    white-space: nowrap;
}


.announcement-inner i {
    color: var(--gold-light);
    margin-right: 5px;
}


/* Improved readability for telephone numbers */

.announcement-inner a[href^="tel:"],
.announcement-phone,
.top-contact-number {
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.055em;

    text-decoration: none;

    white-space: nowrap;
}


.announcement-inner a[href^="tel:"]:hover,
.announcement-phone:hover,
.top-contact-number:hover {
    color: var(--gold-light);
}


.announcement-divider {
    opacity: 0.55;
}


.announcement-whatsapp {
    position: absolute;
    right: 0;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #ffffff;

    font-weight: 600;

    transition: var(--transition);
}


.announcement-whatsapp:hover {
    color: var(--gold-light);
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    background: rgba(255, 255, 255, 0.98);

    border-bottom:
        1px solid rgba(120, 80, 35, 0.08);

    position: sticky;
    top: 0;

    z-index: 1000;

    backdrop-filter: blur(14px);
}


.header-container {
    min-height: 82px;

    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;
}


.brand {
    flex: 0 0 auto;
}


.brand img {
    width: 245px;
    height: auto;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 30px;

    margin-left: auto;
}


.main-navigation a {
    position: relative;

    color: #2a2522;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.045em;
    text-transform: uppercase;

    padding: 31px 0;

    transition: var(--transition);
}


.main-navigation a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: 23px;

    height: 1px;

    background: var(--gold);

    transform: scaleX(0);
    transform-origin: center;

    transition: var(--transition);
}


.main-navigation a:hover,
.main-navigation a.active {
    color: var(--gold);
}


.main-navigation a:hover::after,
.main-navigation a.active::after {
    transform: scaleX(1);
}


/* =========================================================
   HEADER ACTIONS
   ========================================================= */

.header-actions {
    display: flex;
    align-items: center;

    gap: 17px;
}


.icon-button {
    width: 34px;
    height: 34px;

    border: 0;
    background: transparent;

    color: #292321;

    display: grid;
    place-items: center;

    position: relative;

    transition: var(--transition);
}


.icon-button:hover {
    color: var(--gold);

    transform: translateY(-1px);
}


.bag-count {
    position: absolute;

    top: -2px;
    right: -2px;

    width: 16px;
    height: 16px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--gold);
    color: #ffffff;

    font-size: 8px;
    font-weight: 700;
}


.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);
    background: var(--white);

    color: var(--wine);

    border-radius: 50%;
}


/* =========================================================
   SEARCH
   ========================================================= */

.search-overlay {
    position: fixed;
    inset: 0;

    background: rgba(36, 16, 12, 0.88);

    z-index: 2000;

    display: grid;
    place-items: center;

    opacity: 0;
    visibility: hidden;

    transition: var(--transition);
}


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


.search-close {
    position: absolute;

    top: 35px;
    right: 40px;

    width: 45px;
    height: 45px;

    border:
        1px solid rgba(255,255,255,.35);

    border-radius: 50%;

    background: transparent;
    color: #ffffff;

    font-size: 20px;
}


.search-box {
    width: min(
        calc(100% - 50px),
        750px
    );

    position: relative;

    color: #ffffff;
}


.search-box span {
    display: block;

    margin-bottom: 15px;

    color: var(--gold-light);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: .15em;
    text-transform: uppercase;
}


.search-box input {
    width: 100%;

    padding: 18px 55px 18px 0;

    background: transparent;

    border: 0;
    border-bottom:
        1px solid rgba(255,255,255,.5);

    outline: none;

    color: #ffffff;

    font-family: var(--serif);
    font-size: 35px;
}


.search-box input::placeholder {
    color: rgba(255,255,255,.55);
}


.search-box > i {
    position: absolute;

    right: 5px;
    bottom: 24px;

    font-size: 20px;

    color: var(--gold-light);
}


/* =========================================================
   HERO
   ========================================================= */

.hero-section {
    position: relative;
}


.hero-slider {
    position: relative;

    height: min(
        590px,
        calc(100vh - 120px)
    );

    min-height: 540px;

    overflow: hidden;

    background: #e9ddd0;
}


.hero-slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}


.hero-slide.active {
    opacity: 1;
    visibility: visible;
}


.hero-slide > img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(249, 239, 227, .96) 0%,
            rgba(249, 239, 227, .86) 33%,
            rgba(249, 239, 227, .24) 65%,
            rgba(30, 15, 10, .03) 100%
        );
}


.hero-content {
    position: absolute;

    left: max(
        40px,
        calc((100% - var(--container)) / 2)
    );

    top: 50%;

    width: min(520px, 42vw);

    transform: translateY(-50%);
}


.eyebrow,
.section-eyebrow {
    color: var(--gold);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .22em;

    text-transform: uppercase;
}


.hero-content h1,
.hero-content h2 {
    margin-top: 12px;

    font-family: var(--serif);

    font-size: clamp(
        54px,
        5.2vw,
        78px
    );

    line-height: .91;

    font-weight: 600;

    letter-spacing: -.025em;
}


.hero-content h1 span,
.hero-content h2 span {
    display: block;

    color: var(--gold);
}


.ornament,
.heading-ornament {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;
}


.hero-content .ornament {
    justify-content: flex-start;

    margin: 22px 0;
}


.ornament span,
.heading-ornament span {
    width: 48px;
    height: 1px;

    background: var(--gold);
}


.ornament i,
.heading-ornament i {
    color: var(--gold);

    font-size: 7px;
}


.hero-description {
    max-width: 455px;

    color: #514943;

    font-family: var(--serif);

    font-size: 19px;
    font-weight: 500;

    line-height: 1.55;
}


.hero-buttons {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-top: 27px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 155px;

    padding: 13px 24px;

    border: 1px solid var(--gold);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .1em;
    text-transform: uppercase;

    transition: var(--transition);
}


.button-primary {
    background: var(--gold);
    color: #ffffff;
}


.button-primary:hover {
    background: var(--wine);
    border-color: var(--wine);

    transform: translateY(-2px);
}


.button-outline {
    background: rgba(255,255,255,.65);

    color: var(--wine);
}


.button-outline:hover {
    background: var(--gold);
    color: #ffffff;

    transform: translateY(-2px);
}


.button-gold {
    background: var(--gold);
    border-color: var(--gold);

    color: #ffffff;
}


.button-gold:hover {
    background: #ffffff;

    color: var(--wine);
}


/* =========================================================
   HERO SLIDER CONTROLS
   ========================================================= */

.slider-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 45px;
    height: 45px;

    border:
        1px solid rgba(255,255,255,.6);

    background:
        rgba(255,255,255,.7);

    border-radius: 50%;

    color: var(--wine);

    display: grid;
    place-items: center;

    z-index: 5;

    transition: var(--transition);
}


.slider-arrow:hover {
    background: var(--gold);

    color: #ffffff;

    border-color: var(--gold);
}


.slider-prev {
    left: 28px;
}


.slider-next {
    right: 28px;
}


.slider-dots {
    position: absolute;

    left: 50%;
    bottom: 23px;

    transform: translateX(-50%);

    display: flex;

    gap: 8px;

    z-index: 5;
}


.slider-dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 1px solid #ffffff;

    background: transparent;

    border-radius: 50%;

    transition: var(--transition);
}


.slider-dot.active {
    width: 25px;

    border-radius: 5px;

    background: var(--gold);
    border-color: var(--gold);
}


/* =========================================================
   TRUST STRIP
   ========================================================= */

.trust-strip {
    background: #ffffff;

    border-bottom:
        1px solid var(--border);
}


.trust-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    min-height: 92px;
}


.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    border-right:
        1px solid var(--border);
}


.trust-item:last-child {
    border-right: 0;
}


.trust-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    color: var(--gold);

    font-size: 19px;
}


.trust-item strong {
    display: block;

    font-family: var(--serif);

    font-size: 16px;
    font-weight: 700;

    line-height: 1.1;
}


.trust-item span {
    display: block;

    margin-top: 4px;

    color: var(--text-soft);

    font-size: 11px;
    font-weight: 500;
}


/* =========================================================
   SECTIONS
   ========================================================= */

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


.section-heading {
    text-align: center;

    margin-bottom: 45px;
}


.section-heading h2 {
    margin-top: 4px;

    font-family: var(--serif);

    font-size: clamp(
        40px,
        4vw,
        55px
    );

    line-height: 1;

    font-weight: 600;
}


.section-heading .heading-ornament {
    margin-top: 16px;
}


.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    text-align: left;
}


.section-heading-row .heading-ornament {
    justify-content: flex-start;
}


.view-all-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 10px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .12em;
    text-transform: uppercase;

    transition: var(--transition);
}


.view-all-link:hover {
    color: var(--wine);

    gap: 15px;
}


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

.category-section {
    background: var(--ivory);
}


.category-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 26px;
}


.category-card {
    position: relative;

    min-height: 330px;

    overflow: hidden;

    border-radius: 7px;

    background: var(--cream);

    box-shadow: var(--shadow-soft);
}


.category-card img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    object-fit: cover;

    transition:
        transform 0.9s cubic-bezier(.22,1,.36,1);
}


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


.category-card-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(247, 237, 225, .94),
            rgba(247, 237, 225, .35) 65%,
            transparent
        );
}


.category-content {
    position: absolute;

    left: 52px;
    top: 50%;

    transform: translateY(-50%);

    max-width: 290px;
}


.category-content p {
    font-family: var(--serif);

    font-size: 31px;
    font-weight: 600;

    letter-spacing: .02em;
}


.category-content h3 {
    margin-top: 3px;

    color: #554c46;

    font-family: var(--serif);

    font-size: 18px;
    font-weight: 500;
}


.category-link {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: 25px;

    padding: 11px 18px;

    background: var(--gold);
    color: #ffffff;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .1em;
    text-transform: uppercase;

    transition: var(--transition);
}


.category-link:hover {
    background: var(--wine);
}


/* =========================================================
   PRODUCTS
   ========================================================= */

.products-section {
    background: #ffffff;
}


.product-grid {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 16px;
}


.product-card {
    min-width: 0;

    transition: var(--transition);
}


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


.product-image {
    position: relative;

    display: block;

    aspect-ratio: 0.73;

    overflow: hidden;

    background: var(--cream);

    border:
        1px solid #eee4da;
}


.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(.22,1,.36,1);
}


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


.product-badge {
    position: absolute;

    left: 10px;
    top: 10px;

    z-index: 2;

    padding: 5px 9px;

    background: var(--gold);
    color: #ffffff;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .1em;
}


.product-wishlist {
    position: absolute;

    right: 10px;
    top: 10px;

    z-index: 3;

    width: 32px;
    height: 32px;

    border: 0;

    border-radius: 50%;

    background:
        rgba(255,255,255,.92);

    color: var(--wine);

    display: grid;
    place-items: center;

    transition: var(--transition);
}


.product-wishlist:hover {
    background: var(--wine);

    color: #ffffff;
}


.product-info {
    padding: 13px 3px 0;

    text-align: center;
}


.product-category {
    color: var(--gold);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .16em;
}


.product-info h3 {
    margin-top: 3px;

    font-family: var(--serif);

    font-size: 18px;
    font-weight: 600;

    line-height: 1.2;
}


.product-price {
    margin-top: 6px;

    color: var(--text-soft);

    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   CAMPAIGN
   ========================================================= */

.campaign-section {
    padding: 0 0 85px;

    background: #ffffff;
}


.campaign-banner {
    position: relative;

    height: 245px;

    overflow: hidden;

    border-radius: 8px;
}


.campaign-banner img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.campaign-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(57, 3, 14, .96),
            rgba(75, 7, 19, .82) 42%,
            rgba(75, 7, 19, .18)
        );
}


.campaign-content {
    position: absolute;

    left: 70px;
    top: 50%;

    transform: translateY(-50%);

    color: #ffffff;
}


.campaign-content p {
    color: var(--gold-light);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .18em;
}


.campaign-content h2 {
    margin: 3px 0 17px;

    font-family: var(--serif);

    font-size: 40px;
    font-weight: 600;

    line-height: 1;
}


.campaign-content h2 span {
    color: var(--gold-light);
}


/* =========================================================
   VALUES
   ========================================================= */

.values-section {
    background: var(--cream);

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);
}


.values-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}


.value-item {
    text-align: center;

    padding: 5px 30px;

    border-right:
        1px solid var(--border);
}


.value-item:last-child {
    border-right: 0;
}


.value-icon {
    color: var(--gold);

    font-size: 25px;

    margin-bottom: 8px;
}


.value-item h3 {
    font-family: var(--serif);

    font-size: 18px;
    font-weight: 700;
}


.value-item p {
    max-width: 210px;

    margin: 2px auto 0;

    color: var(--text-soft);

    font-size: 11px;
}


/* =========================================================
   INSTAGRAM
   ========================================================= */

.instagram-section {
    background: #ffffff;
}


.instagram-handle {
    margin-top: 3px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 600;
}


.instagram-grid {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 8px;
}


.instagram-grid > div {
    aspect-ratio: 1;

    overflow: hidden;
}


.instagram-grid img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: var(--transition);
}


.instagram-grid > div:hover img {
    transform: scale(1.06);
}


/* =========================================================
   NEWSLETTER
   ========================================================= */

.newsletter-section {
    padding: 0 0 75px;

    background: #ffffff;
}


.newsletter-box {
    min-height: 145px;

    padding: 30px 45px;

    display: flex;
    align-items: center;

    gap: 25px;

    background:
        linear-gradient(
            110deg,
            #f5ede3,
            #fbf7f1
        );

    border:
        1px solid var(--border);

    border-radius: 7px;
}


.newsletter-icon {
    width: 54px;
    height: 54px;

    flex: 0 0 54px;

    border:
        1px solid var(--gold);

    border-radius: 50%;

    display: grid;
    place-items: center;

    color: var(--gold);

    font-size: 21px;
}


.newsletter-copy {
    flex: 1;
}


.newsletter-copy p {
    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .17em;
}


.newsletter-copy h2 {
    margin-top: 1px;

    font-family: var(--serif);

    font-size: 28px;
    font-weight: 600;

    line-height: 1.1;
}


.newsletter-copy span {
    display: block;

    margin-top: 4px;

    color: var(--text-soft);

    font-size: 12px;
}


.newsletter-form {
    width: min(470px, 40%);

    display: flex;

    background: #ffffff;

    border:
        1px solid var(--border);
}


.newsletter-form input {
    flex: 1;

    min-width: 0;

    padding: 13px 16px;

    border: 0;
    outline: 0;

    background: transparent;

    font-size: 12px;
}


.newsletter-form button {
    padding: 0 24px;

    border: 0;

    background: var(--gold);
    color: #ffffff;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .1em;
    text-transform: uppercase;

    transition: var(--transition);
}


.newsletter-form button:hover {
    background: var(--wine);
}


/* =========================================================
   MASTER FOOTER
   SINGLE FINAL FOOTER SYSTEM
   ========================================================= */

.svd-footer-v2 {
    width: 100%;

    background: var(--footer-cream);

    color: #463a32;

    border-top:
        1px solid rgba(169, 132, 69, 0.22);
}


/* =========================================================
   FOOTER INNER CONTAINER
   ========================================================= */

.svd-footer-v2__inner {
    width: min(
        1400px,
        calc(100% - 80px)
    );

    margin: 0 auto;

    padding:
        72px 0
        32px;
}


/* =========================================================
   FOOTER MAIN GRID
   ========================================================= */

.svd-footer-v2__main {
    display: grid;

    grid-template-columns:
        1.45fr
        .85fr
        1fr
        .85fr
        1.15fr
        1.35fr;

    gap: 0;

    align-items: stretch;
}


/* =========================================================
   FOOTER BRAND
   ========================================================= */

.svd-footer-v2__brand {
    padding:
        0 38px 0 0;
}


.svd-footer-v2__logo {
    display: block;

    width: 245px;

    max-width: 100%;

    margin-bottom: 25px;
}


.svd-footer-v2__logo img {
    display: block;

    width: 100%;
    height: auto;
}


.svd-footer-v2__description {
    max-width: 285px;

    margin: 0;

    color: #675b51;

    font-size: 14px;
    font-weight: 500;

    line-height: 1.8;
}


/* =========================================================
   FOOTER SOCIALS
   ========================================================= */

.svd-footer-v2__socials {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 26px;
}


.svd-footer-v2__socials a {
    width: 44px;
    height: 44px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(169, 132, 69, 0.20);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.32);

    color: var(--wine);

    font-size: 17px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}


.svd-footer-v2__socials a:hover {
    transform: translateY(-3px);

    background: var(--gold);

    border-color: var(--gold);

    color: #ffffff;
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.svd-footer-v2__column,
.svd-footer-v2__contact {
    min-width: 0;

    padding:
        0 30px;

    border-left:
        1px solid rgba(169, 132, 69, 0.16);
}


/* =========================================================
   FOOTER HEADINGS
   ========================================================= */

.svd-footer-v2__column h4,
.svd-footer-v2__contact h4 {
    margin: 0;

    color: #382d27;

    font-family: var(--serif);

    font-size: 25px;
    font-weight: 600;

    line-height: 1.1;

    letter-spacing: 0;
}


/* =========================================================
   FOOTER HEADING ORNAMENT
   ========================================================= */

.svd-footer-v2__heading-ornament {
    display: flex;

    align-items: center;

    gap: 6px;

    margin:
        16px 0
        32px;
}


.svd-footer-v2__heading-ornament span {
    width: 36px;
    height: 1px;

    background:
        rgba(169, 132, 69, 0.65);
}


.svd-footer-v2__heading-ornament i {
    color: var(--gold);

    font-size: 7px;
}


/* =========================================================
   FOOTER LINKS
   ========================================================= */

.svd-footer-v2__column a {
    display: block;

    width: fit-content;

    margin-bottom: 18px;

    color: #554940;

    text-decoration: none;

    font-family: var(--serif);

    font-size: 17px;
    font-weight: 600;

    line-height: 1.35;

    transition:
        color 0.22s ease,
        transform 0.22s ease;
}


.svd-footer-v2__column a:hover {
    color: var(--gold);

    transform:
        translateX(4px);
}


/* =========================================================
   FOOTER CONTACT
   ========================================================= */

.svd-footer-v2__contact-item {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 20px;

    color: #554940;

    font-family: var(--sans);

    font-size: 14px;
    font-weight: 600;

    line-height: 1.55;
}


.svd-footer-v2__contact-item i {
    width: 42px;
    height: 42px;

    flex:
        0 0 42px;

    display: grid;

    place-items: center;

    margin-top: -3px;

    border-radius: 50%;

    background: var(--wine);

    color: #ffffff;

    font-size: 16px;
}


/* IMPROVED PHONE NUMBER READABILITY */

.svd-footer-v2__contact-item a[href^="tel:"] {
    color: var(--wine);

    font-family: var(--sans);

    font-size: 16px;
    font-weight: 800;

    letter-spacing: 0.025em;

    text-decoration: none;
}


.svd-footer-v2__contact-item a[href^="tel:"]:hover {
    color: var(--gold);
}


.svd-footer-v2__contact-item a {
    color: #554940;

    text-decoration: none;

    transition: color 0.2s ease;
}


.svd-footer-v2__contact-item a:hover {
    color: var(--gold);
}


.svd-footer-v2__address span {
    max-width: 245px;
}


/* =========================================================
   FOOTER DIVIDER
   ========================================================= */

.svd-footer-v2__divider {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 24px;

    margin:
        65px 0
        0;
}


.svd-footer-v2__divider > span {
    width: min(
        280px,
        22vw
    );

    height: 1px;

    background:
        rgba(169, 132, 69, 0.55);

    position: relative;
}


.svd-footer-v2__divider > span:first-child::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--gold);

    transform:
        translateY(-50%);
}


.svd-footer-v2__divider > span:last-child::after {
    content: "";

    position: absolute;

    right: 0;
    top: 50%;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--gold);

    transform:
        translateY(-50%);
}


.svd-footer-v2__divider-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    color: var(--gold);

    font-size: 22px;

    transform:
        rotate(-18deg);
}


/* =========================================================
   FOOTER BOTTOM BAR
   ========================================================= */

.svd-footer-v2__bottom-bar {
    position: relative;

    overflow: hidden;

    margin-top: 38px;

    background:
        linear-gradient(
            90deg,
            #2d150e,
            var(--wine) 50%,
            #2d150e
        );

    border-top:
        1px solid rgba(216, 180, 106, 0.22);
}


.svd-footer-v2__bottom {
    position: relative;

    width: min(
        1400px,
        calc(100% - 80px)
    );

    min-height: 132px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 70px;

    color:
        rgba(255,255,255,.88);
}


.svd-footer-v2__bottom > p {
    margin: 0;

    font-family: var(--serif);

    font-size: 17px;
    font-weight: 500;

    letter-spacing: .02em;

    white-space: nowrap;
}


/* =========================================================
   FOOTER TAGLINE
   ========================================================= */

.svd-footer-v2__bottom-tagline {
    display: flex;

    align-items: center;

    gap: 16px;

    padding-left: 55px;

    border-left:
        1px solid rgba(216, 180, 106, 0.55);
}


.svd-footer-v2__bottom-tagline span {
    width: 24px;
    height: 1px;

    background: var(--gold);
}


.svd-footer-v2__bottom-tagline p {
    margin: 0;

    color: var(--gold-light);

    font-family: var(--serif);

    font-size: 27px;
    font-weight: 600;

    font-style: italic;

    letter-spacing: .02em;

    white-space: nowrap;
}


/* =========================================================
   FOOTER DECORATIVE CORNERS
   ========================================================= */

.svd-footer-v2__bottom-corner {
    position: absolute;

    top: 50%;

    color:
        rgba(216, 180, 106, 0.42);

    font-size: 58px;

    transform:
        translateY(-50%);
}


.svd-footer-v2__bottom-corner--left {
    left: -2px;

    transform:
        translateY(-50%)
        rotate(-35deg);
}


.svd-footer-v2__bottom-corner--right {
    right: -2px;

    transform:
        translateY(-50%)
        rotate(145deg);
}


/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */

.whatsapp-float {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 1500;

    width: 56px;
    height: 56px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #25d366;
    color: #ffffff;

    box-shadow:
        0 10px 25px rgba(37,211,102,.28);

    font-size: 28px;

    transition: var(--transition);
}


.whatsapp-float:hover {
    transform:
        translateY(-4px)
        scale(1.04);
}


/* =========================================================
   TOAST
   ========================================================= */

.site-toast {
    position: fixed;

    left: 50%;
    bottom: 30px;

    z-index: 3000;

    transform:
        translate(-50%, 30px);

    opacity: 0;
    visibility: hidden;

    padding: 12px 20px;

    border-radius: 5px;

    background: var(--wine);
    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    transition: var(--transition);
}


.site-toast.show {
    opacity: 1;
    visibility: visible;

    transform:
        translate(-50%, 0);
}


/* =========================================================
   RESPONSIVE — LARGE TABLET
   ========================================================= */

@media (max-width: 1250px) {

    .container,
    .header-container {
        width: min(
            calc(100% - 60px),
            var(--container)
        );
    }


    .main-navigation {
        gap: 20px;
    }


    .main-navigation a {
        font-size: 11px;
    }


    .brand img {
        width: 215px;
    }


    .product-grid {
        grid-template-columns:
            repeat(3, 1fr);

        row-gap: 35px;
    }


    .svd-footer-v2__inner {
        width:
            calc(100% - 60px);
    }


    .svd-footer-v2__main {
        grid-template-columns:
            repeat(4, 1fr);

        row-gap: 55px;
    }


    .svd-footer-v2__brand {
        grid-column:
            span 4;

        padding-bottom: 10px;
    }


    .svd-footer-v2__contact {
        grid-column:
            span 2;
    }


    .svd-footer-v2__bottom {
        width:
            calc(100% - 60px);

        gap: 45px;
    }

}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 850px) {

    .container,
    .header-container {
        width:
            calc(100% - 44px);
    }


    .trust-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .trust-item {
        min-height: 75px;
    }


    .trust-item:nth-child(3) {
        border-right: 0;
    }


    .svd-footer-v2__inner {
        width:
            calc(100% - 44px);

        padding-top: 55px;
    }


    .svd-footer-v2__main {
        grid-template-columns:
            repeat(2, 1fr);

        gap:
            42px 0;
    }


    .svd-footer-v2__brand {
        grid-column:
            span 2;

        padding:
            0 0 35px;

        border-bottom:
            1px solid rgba(169, 132, 69, 0.16);
    }


    .svd-footer-v2__column,
    .svd-footer-v2__contact {
        padding:
            0 24px;
    }


    .svd-footer-v2__column:nth-of-type(2n) {
        border-left: 0;
    }


    .svd-footer-v2__contact {
        grid-column:
            span 2;
    }


    .svd-footer-v2__bottom {
        width:
            calc(100% - 44px);

        min-height: 150px;

        flex-direction: column;

        gap: 18px;

        padding:
            30px 0;
    }


    .svd-footer-v2__bottom-tagline {
        padding-left: 0;

        border-left: 0;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .container {
        width:
            calc(100% - 34px);
    }


    .announcement-inner {
        width:
            calc(100% - 25px);

        justify-content: center;
    }


    .announcement-inner > span:not(:first-child),
    .announcement-whatsapp {
        display: none;
    }


    .header-container {
        width:
            calc(100% - 30px);

        min-height: 70px;

        gap: 12px;
    }


    .brand img {
        width: 180px;
    }


    .mobile-menu-button {
        display: grid;
        place-items: center;

        margin-left: auto;
    }


    .main-navigation {
        position: fixed;

        top: 108px;
        left: 0;
        right: 0;
        bottom: 0;

        background:
            rgba(251,248,243,.98);

        backdrop-filter:
            blur(15px);

        padding:
            35px 25px;

        display: flex;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        transform:
            translateX(100%);

        transition: var(--transition);

        overflow-y: auto;
    }


    .main-navigation.open {
        transform:
            translateX(0);
    }


    .main-navigation a {
        padding: 18px 5px;

        border-bottom:
            1px solid var(--border);

        font-family: var(--serif);

        font-size: 21px;
        font-weight: 600;

        text-transform: none;
    }


    .main-navigation a::after {
        display: none;
    }


    .header-actions {
        gap: 3px;
    }


    .header-actions .icon-button:first-child {
        display: none;
    }


    .hero-slider {
        height: 620px;
        min-height: 620px;
    }


    .hero-slide > img {
        object-position:
            63% center;
    }


    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(249,239,227,.15) 15%,
                rgba(249,239,227,.55) 45%,
                rgba(249,239,227,.97) 72%
            );
    }


    .hero-content {
        left: 25px;
        right: 25px;

        bottom: 65px;
        top: auto;

        width: auto;

        transform: none;
    }


    .hero-content h1,
    .hero-content h2 {
        font-size: 48px;
    }


    .hero-description {
        font-size: 17px;
    }


    .hero-buttons {
        flex-wrap: wrap;
    }


    .slider-arrow {
        width: 38px;
        height: 38px;
    }


    .slider-prev {
        left: 12px;
    }


    .slider-next {
        right: 12px;
    }


    .trust-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .trust-item {
        justify-content: flex-start;

        padding: 13px 10px;

        border-right:
            1px solid var(--border);

        border-bottom:
            1px solid var(--border);
    }


    .trust-item:nth-child(2n) {
        border-right: 0;
    }


    .trust-item:last-child {
        grid-column:
            span 2;

        border-right: 0;
    }


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


    .section-heading {
        margin-bottom: 32px;
    }


    .section-heading h2 {
        font-size: 42px;
    }


    .section-heading-row {
        align-items: flex-start;
    }


    .category-grid {
        grid-template-columns: 1fr;
    }


    .category-card {
        min-height: 280px;
    }


    .category-content {
        left: 30px;
    }


    .product-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 25px 12px;
    }


    .campaign-section {
        padding-bottom: 65px;
    }


    .campaign-banner {
        height: 280px;
    }


    .campaign-content {
        left: 28px;
        right: 25px;
    }


    .campaign-content h2 {
        font-size: 34px;
    }


    .values-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 30px 0;
    }


    .value-item:nth-child(2) {
        border-right: 0;
    }


    .value-item:nth-child(3),
    .value-item:nth-child(4) {
        border-top:
            1px solid var(--border);

        padding-top: 25px;
    }


    .instagram-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .newsletter-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 30px 25px;
    }


    .newsletter-form {
        width: 100%;
    }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .svd-footer-v2__inner {
        width:
            calc(100% - 36px);

        padding:
            48px 0
            28px;
    }


    .svd-footer-v2__main {
        grid-template-columns:
            1fr;

        gap: 0;
    }


    .svd-footer-v2__brand {
        grid-column: auto;

        padding-bottom: 35px;

        margin-bottom: 10px;
    }


    .svd-footer-v2__logo {
        width: 210px;
    }


    .svd-footer-v2__column,
    .svd-footer-v2__contact {
        grid-column: auto;

        padding:
            28px 0;

        border-left: 0;

        border-bottom:
            1px solid rgba(169, 132, 69, 0.16);
    }


    .svd-footer-v2__column h4,
    .svd-footer-v2__contact h4 {
        font-size: 24px;
    }


    .svd-footer-v2__heading-ornament {
        margin-bottom: 25px;
    }


    .svd-footer-v2__contact-item a[href^="tel:"] {
        font-size: 17px;
        font-weight: 800;
    }


    .svd-footer-v2__divider {
        gap: 14px;

        margin-top: 42px;
    }


    .svd-footer-v2__divider > span {
        width: 80px;
    }


    .svd-footer-v2__bottom {
        width:
            calc(100% - 36px);

        min-height: 155px;

        text-align: center;
    }


    .svd-footer-v2__bottom > p {
        font-size: 15px;

        white-space: normal;
    }


    .svd-footer-v2__bottom-tagline p {
        font-size: 24px;
    }


    .svd-footer-v2__bottom-corner {
        display: none;
    }

}


/* =========================================================
   RESPONSIVE — VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .brand img {
        width: 158px;
    }


    .header-actions .icon-button:nth-child(3) {
        display: none;
    }


    .hero-slider {
        height: 600px;
        min-height: 600px;
    }


    .hero-content {
        bottom: 50px;
    }


    .hero-content h1,
    .hero-content h2 {
        font-size: 43px;
    }


    .hero-description {
        font-size: 16px;
    }


    .button {
        min-width: 140px;

        padding:
            12px 17px;
    }


    .trust-item {
        gap: 8px;
    }


    .trust-item strong {
        font-size: 14px;
    }


    .trust-item span {
        font-size: 10px;
    }


    .category-card {
        min-height: 250px;
    }


    .category-content p {
        font-size: 28px;
    }


    .product-info h3 {
        font-size: 17px;
    }


    .campaign-banner {
        height: 300px;
    }


    .instagram-grid {
        gap: 5px;
    }


    .whatsapp-float {
        width: 52px;
        height: 52px;

        right: 16px;
        bottom: 16px;
    }

}




/* =========================================================
   SHRI VATSADARBAR
   SAREES LANDING PAGE
========================================================= */


/* =========================================================
   PAGE
========================================================= */

.svd-sarees-page {

    background: #ffffff;

    color: #302923;

    overflow-x: hidden;

}


/* =========================================================
   HERO
========================================================= */

.svd-sarees-hero {

    position: relative;

    min-height: 620px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.88) 42%,
            rgba(255, 255, 255, 0.28) 100%
        );

}


.svd-sarees-hero__background {

    position: absolute;

    inset: 0;

    z-index: 0;

}


.svd-sarees-hero__background img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


.svd-sarees-hero__overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.97) 0%,
            rgba(255, 255, 255, 0.91) 38%,
            rgba(255, 255, 255, 0.42) 65%,
            rgba(255, 255, 255, 0.08) 100%
        );

}


.svd-sarees-hero__content {

    position: relative;

    z-index: 2;

    width: min(1280px, 90%);

    margin: auto;

    padding: 90px 0;

    max-width: 1280px;

}


.svd-sarees-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: #a77d32;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.24em;

    text-transform: uppercase;

}


.svd-sarees-eyebrow::before {

    content: "";

    width: 42px;

    height: 1px;

    background: #c5a46a;

}


.svd-sarees-hero h1 {

    max-width: 650px;

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(
        48px,
        6vw,
        78px
    );

    font-weight: 400;

    line-height: 1.08;

    color: #302923;

}


.svd-sarees-hero h1 span {

    color: #a77d32;

}


.svd-sarees-hero p {

    max-width: 550px;

    margin: 25px 0 0;

    color: #6f655c;

    font-size: 16px;

    line-height: 1.9;

}


.svd-sarees-hero__actions {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;

}


/* =========================================================
   BUTTONS
========================================================= */

.svd-sarees-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 0 27px;

    border-radius: 2px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    transition: 0.25s ease;

}


.svd-sarees-button--primary {

    background:
        linear-gradient(
            135deg,
            #956d27,
            #bd9548
        );

    color: #ffffff;

    box-shadow:
        0 12px 30px
        rgba(141, 104, 42, 0.18);

}


.svd-sarees-button--primary:hover {

    transform: translateY(-2px);

    box-shadow:
        0 18px 38px
        rgba(141, 104, 42, 0.28);

}


.svd-sarees-button--secondary {

    border:
        1px solid
        rgba(161, 119, 47, 0.45);

    color: #805e25;

    background:
        rgba(255, 255, 255, 0.72);

}


.svd-sarees-button--secondary:hover {

    background: #ffffff;

    border-color: #a77d32;

}


/* =========================================================
   INTRODUCTION
========================================================= */

.svd-sarees-intro {

    width: min(1180px, 90%);

    margin: auto;

    padding: 105px 0;

    text-align: center;

}


.svd-sarees-section-eyebrow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-bottom: 18px;

    color: #a77d32;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.24em;

    text-transform: uppercase;

}


.svd-sarees-section-eyebrow::before,
.svd-sarees-section-eyebrow::after {

    content: "";

    width: 45px;

    height: 1px;

    background: #cfb47e;

}


.svd-sarees-intro h2 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(
        34px,
        4vw,
        52px
    );

    font-weight: 400;

    color: #322b25;

}


.svd-sarees-intro p {

    max-width: 760px;

    margin: 25px auto 0;

    color: #71675e;

    font-size: 15px;

    line-height: 1.9;

}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.svd-sarees-highlights {

    background:

        linear-gradient(
            180deg,
            #fcfaf6,
            #f7f1e7
        );

    border-top:
        1px solid
        rgba(180, 140, 70, 0.12);

    border-bottom:
        1px solid
        rgba(180, 140, 70, 0.12);

    padding: 85px 0;

}


.svd-sarees-highlights__inner {

    width: min(1280px, 90%);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;

}


.svd-sarees-highlight {

    background:
        rgba(255, 255, 255, 0.72);

    padding: 38px 25px;

    text-align: center;

    border:
        1px solid
        rgba(180, 140, 70, 0.16);

    transition: 0.3s ease;

}


.svd-sarees-highlight:hover {

    transform: translateY(-5px);

    background: #ffffff;

    box-shadow:
        0 18px 45px
        rgba(70, 52, 25, 0.07);

}


.svd-sarees-highlight__icon {

    width: 58px;

    height: 58px;

    margin:
        0 auto 20px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid #d6b87b;

    color: #a87d31;

    font-size: 20px;

}


.svd-sarees-highlight h3 {

    margin: 0 0 12px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;

    font-weight: 400;

    color: #3a322c;

}


.svd-sarees-highlight p {

    margin: 0;

    color: #756b62;

    font-size: 13px;

    line-height: 1.75;

}


/* =========================================================
   COLLECTION SECTION
========================================================= */

.svd-sarees-collection {

    width: min(1320px, 90%);

    margin: auto;

    padding: 105px 0;

}


.svd-sarees-collection__heading {

    text-align: center;

    margin-bottom: 52px;

}


.svd-sarees-collection__heading h2 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(
        34px,
        4vw,
        52px
    );

    font-weight: 400;

    color: #312a24;

}


.svd-sarees-collection__heading p {

    max-width: 650px;

    margin: 18px auto 0;

    color: #766c62;

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   CATEGORY CARDS
========================================================= */

.svd-sarees-categories {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;

}


.svd-sarees-category {

    position: relative;

    min-height: 430px;

    overflow: hidden;

    background: #f4efe7;

    text-decoration: none;

    display: block;

}


.svd-sarees-category img {

    width: 100%;

    height: 430px;

    object-fit: cover;

    display: block;

    transition:
        transform 0.7s ease;

}


.svd-sarees-category:hover img {

    transform: scale(1.06);

}


.svd-sarees-category::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            to top,
            rgba(28, 22, 17, 0.70),
            rgba(28, 22, 17, 0.03) 65%
        );

}


.svd-sarees-category__content {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    z-index: 2;

    padding: 30px;

    color: #ffffff;

}


.svd-sarees-category__content span {

    display: block;

    margin-bottom: 10px;

    font-size: 10px;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    opacity: 0.85;

}


.svd-sarees-category__content h3 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 29px;

    font-weight: 400;

}


.svd-sarees-category__content p {

    margin: 12px 0 0;

    font-size: 13px;

    line-height: 1.6;

}


/* =========================================================
   FEATURE BANNER
========================================================= */

.svd-sarees-feature {

    position: relative;

    overflow: hidden;

    background: #3b3027;

}


.svd-sarees-feature__inner {

    width: min(1320px, 90%);

    min-height: 500px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

}


.svd-sarees-feature__image {

    height: 100%;

}


.svd-sarees-feature__image img {

    width: 100%;

    height: 100%;

    min-height: 500px;

    object-fit: cover;

    display: block;

}


.svd-sarees-feature__content {

    padding: 70px;

    color: #ffffff;

}


.svd-sarees-feature__content .svd-sarees-section-eyebrow {

    justify-content: flex-start;

    color: #d7b878;

}


.svd-sarees-feature__content
.svd-sarees-section-eyebrow::before {

    background: #c9a96b;

}


.svd-sarees-feature__content
.svd-sarees-section-eyebrow::after {

    display: none;

}


.svd-sarees-feature__content h2 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(
        35px,
        4vw,
        54px
    );

    font-weight: 400;

    line-height: 1.2;

}


.svd-sarees-feature__content p {

    margin: 24px 0 0;

    color: rgba(255, 255, 255, 0.76);

    font-size: 15px;

    line-height: 1.9;

}


/* =========================================================
   FINAL CTA
========================================================= */

.svd-sarees-cta {

    padding: 105px 20px;

    text-align: center;

    background:

        radial-gradient(
            circle at center,
            rgba(194, 156, 84, 0.12),
            transparent 48%
        ),

        linear-gradient(
            180deg,
            #ffffff,
            #fbf8f2
        );

}


.svd-sarees-cta h2 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(
        36px,
        4vw,
        54px
    );

    font-weight: 400;

    color: #332b24;

}


.svd-sarees-cta p {

    max-width: 620px;

    margin:
        20px auto
        30px;

    color: #74695f;

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {


    .svd-sarees-hero {

        min-height: 560px;

    }


    .svd-sarees-highlights__inner {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .svd-sarees-categories {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .svd-sarees-feature__content {

        padding: 45px;

    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {


    .svd-sarees-hero {

        min-height: 600px;

        align-items: flex-end;

    }


    .svd-sarees-hero__overlay {

        background:

            linear-gradient(
                to top,
                rgba(255, 255, 255, 0.98),
                rgba(255, 255, 255, 0.84) 55%,
                rgba(255, 255, 255, 0.20)
            );

    }


    .svd-sarees-hero__content {

        width: 88%;

        padding:
            60px 0
            55px;

    }


    .svd-sarees-hero h1 {

        font-size: 47px;

    }


    .svd-sarees-hero p {

        font-size: 14px;

        line-height: 1.8;

    }


    .svd-sarees-hero__actions {

        flex-direction: column;

    }


    .svd-sarees-button {

        width: 100%;

    }


    .svd-sarees-intro {

        padding: 75px 0;

    }


    .svd-sarees-highlights {

        padding: 60px 0;

    }


    .svd-sarees-highlights__inner {

        grid-template-columns: 1fr;

        gap: 14px;

    }


    .svd-sarees-highlight {

        padding: 30px 20px;

    }


    .svd-sarees-collection {

        padding: 75px 0;

    }


    .svd-sarees-categories {

        grid-template-columns: 1fr;

    }


    .svd-sarees-category {

        min-height: 400px;

    }


    .svd-sarees-category img {

        height: 400px;

    }


    .svd-sarees-feature__inner {

        grid-template-columns: 1fr;

    }


    .svd-sarees-feature__image img {

        min-height: 380px;

    }


    .svd-sarees-feature__content {

        padding: 55px 8%;

    }


    .svd-sarees-feature__content h2 {

        font-size: 38px;

    }


    .svd-sarees-cta {

        padding:
            75px 20px;

    }

}







/* =========================================================
   SHRI VATSADARBAR — MASTER FOOTER
========================================================= */

.svd-footer-v2 {

    background:
        linear-gradient(
            135deg,
            #2c241e 0%,
            #171310 50%,
            #2a211b 100%
        );

    color: #f5efe5;

    position: relative;

    overflow: hidden;

    margin-top: 0;

}


/* =========================================================
   FOOTER INNER
========================================================= */

.svd-footer-v2__inner {

    width: min(1400px, 92%);

    margin: auto;

    padding: 75px 0 35px;

}


.svd-footer-v2__main {

    display: grid;

    grid-template-columns:
        1.7fr
        1fr
        1fr
        1fr
        1fr
        1.5fr;

    gap: 35px;

    align-items: start;

}


/* =========================================================
   BRAND
========================================================= */

.svd-footer-v2__brand {

    padding-right: 15px;

}


.svd-footer-v2__logo {

    display: inline-block;

    margin-bottom: 22px;

}


.svd-footer-v2__logo img {

    display: block;

    width: 155px;

    max-width: 100%;

    height: auto;

}


.svd-footer-v2__description {

    margin: 0;

    max-width: 290px;

    color: rgba(245, 239, 229, 0.68);

    font-size: 13px;

    line-height: 1.8;

}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.svd-footer-v2__socials {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 24px;

}


.svd-footer-v2__socials a {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    color: #d8b56b;

    border:
        1px solid
        rgba(216, 181, 107, 0.35);

    transition: 0.25s ease;

}


.svd-footer-v2__socials a:hover {

    color: #ffffff;

    background: #a77b2d;

    border-color: #a77b2d;

    transform: translateY(-3px);

}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.svd-footer-v2__column,
.svd-footer-v2__contact {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.svd-footer-v2 h4 {

    margin: 0;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;

    font-weight: 400;

}


/* =========================================================
   HEADING ORNAMENT
========================================================= */

.svd-footer-v2__heading-ornament {

    display: flex;

    align-items: center;

    gap: 7px;

    margin:
        13px 0
        20px;

    color: #caa154;

    font-size: 8px;

}


.svd-footer-v2__heading-ornament span {

    width: 22px;

    height: 1px;

    background:
        rgba(202, 161, 84, 0.55);

}


.svd-footer-v2__column a {

    display: block;

    margin-bottom: 12px;

    color: rgba(245, 239, 229, 0.68);

    text-decoration: none;

    font-size: 12px;

    line-height: 1.4;

    transition: 0.25s ease;

}


.svd-footer-v2__column a:hover {

    color: #d9b76e;

    transform: translateX(3px);

}


/* =========================================================
   CONTACT
========================================================= */

.svd-footer-v2__contact-item {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 14px;

    color: rgba(245, 239, 229, 0.68);

    font-size: 12px;

    line-height: 1.65;

}


.svd-footer-v2__contact-item i {

    color: #d4ad61;

    width: 15px;

    margin-top: 3px;

    flex-shrink: 0;

}


.svd-footer-v2__contact-item a {

    color: rgba(245, 239, 229, 0.72);

    text-decoration: none;

    transition: 0.25s ease;

}


.svd-footer-v2__contact-item a:hover {

    color: #d9b76e;

}


/* =========================================================
   DECORATIVE DIVIDER
========================================================= */

.svd-footer-v2__divider {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    margin-top: 55px;

}


.svd-footer-v2__divider > span {

    width: min(260px, 30vw);

    height: 1px;

    background:

        linear-gradient(
            90deg,
            transparent,
            rgba(204, 166, 89, 0.55),
            transparent
        );

}


.svd-footer-v2__divider-icon {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(204, 166, 89, 0.38);

    color: #d4ad61;

    font-size: 14px;

}


/* =========================================================
   BOTTOM BAR
========================================================= */

.svd-footer-v2__bottom-bar {

    border-top:

        1px solid
        rgba(255, 255, 255, 0.08);

    background:
        rgba(0, 0, 0, 0.16);

}


.svd-footer-v2__bottom {

    width: min(1400px, 92%);

    min-height: 75px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    position: relative;

}


.svd-footer-v2__bottom > p {

    margin: 0;

    color: rgba(245, 239, 229, 0.55);

    font-size: 11px;

}


.svd-footer-v2__bottom-tagline {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #d3aa5d;

}


.svd-footer-v2__bottom-tagline span {

    width: 28px;

    height: 1px;

    background:
        rgba(211, 170, 93, 0.45);

}


.svd-footer-v2__bottom-tagline p {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 12px;

    letter-spacing: 0.08em;

}


.svd-footer-v2__bottom-corner {

    color: rgba(211, 170, 93, 0.45);

    font-size: 14px;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1150px) {


    .svd-footer-v2__main {

        grid-template-columns:
            repeat(3, 1fr);

        gap: 45px 30px;

    }


    .svd-footer-v2__brand {

        grid-column:
            span 3;

    }


    .svd-footer-v2__description {

        max-width: 500px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {


    .svd-footer-v2__inner {

        width: 88%;

        padding:
            55px 0
            30px;

    }


    .svd-footer-v2__main {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 38px 25px;

    }


    .svd-footer-v2__brand {

        grid-column:
            span 2;

        padding-right: 0;

    }


    .svd-footer-v2__logo img {

        width: 135px;

    }


    .svd-footer-v2__description {

        font-size: 12px;

    }


    .svd-footer-v2__contact {

        grid-column:
            span 2;

    }


    .svd-footer-v2 h4 {

        font-size: 17px;

    }


    .svd-footer-v2__column a {

        font-size: 11px;

    }


    .svd-footer-v2__divider {

        margin-top: 42px;

    }


    .svd-footer-v2__divider > span {

        width: 70px;

    }


    .svd-footer-v2__bottom {

        padding:
            22px 0;

        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 13px;

    }


    .svd-footer-v2__bottom-corner {

        display: none;

    }


    .svd-footer-v2__bottom-tagline {

        order: -1;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {


    .svd-footer-v2__main {

        grid-template-columns: 1fr;

    }


    .svd-footer-v2__brand,
    .svd-footer-v2__contact {

        grid-column: auto;

    }


    .svd-footer-v2__column {

        width: 100%;

    }


    .svd-footer-v2__contact {

        width: 100%;

    }

       }





/* =========================================================
   SHREEVATSADHARWA
   SUITS LANDING PAGE
========================================================= */


/* =========================================================
   PAGE
========================================================= */

.svd-suits-page {

    background: #ffffff;

    color: #302923;

    overflow-x: hidden;

}


/* =========================================================
   HERO
========================================================= */

.svd-suits-hero {

    position: relative;

    min-height: 620px;

    display: flex;

    align-items: center;

    overflow: hidden;

}


.svd-suits-hero__background {

    position: absolute;

    inset: 0;

    z-index: 0;

}


.svd-suits-hero__background img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


.svd-suits-hero__overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.97) 0%,
            rgba(255, 255, 255, 0.91) 38%,
            rgba(255, 255, 255, 0.48) 65%,
            rgba(255, 255, 255, 0.10) 100%
        );

}


.svd-suits-hero__content {

    position: relative;

    z-index: 2;

    width: min(1280px, 90%);

    margin: auto;

    padding: 90px 0;

}


.svd-suits-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: #a77d32;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.24em;

    text-transform: uppercase;

}


.svd-suits-eyebrow::before {

    content: "";

    width: 42px;

    height: 1px;

    background: #c5a46a;

}


.svd-suits-hero h1 {

    max-width: 650px;

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(
        48px,
        6vw,
        78px
    );

    font-weight: 400;

    line-height: 1.08;

    color: #302923;

}


.svd-suits-hero h1 span {

    color: #a77d32;

}


.svd-suits-hero p {

    max-width: 550px;

    margin: 25px 0 0;

    color: #6f655c;

    font-size: 16px;

    line-height: 1.9;

}


.svd-suits-hero__actions {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;

}


/* =========================================================
   BUTTONS
========================================================= */

.svd-suits-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 0 27px;

    border-radius: 2px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    transition: 0.25s ease;

}


.svd-suits-button--primary {

    background:

        linear-gradient(
            135deg,
            #956d27,
            #bd9548
        );

    color: #ffffff;

    box-shadow:

        0 12px 30px
        rgba(141, 104, 42, 0.18);

}


.svd-suits-button--primary:hover {

    transform: translateY(-2px);

    box-shadow:

        0 18px 38px
        rgba(141, 104, 42, 0.28);

}


.svd-suits-button--secondary {

    border:

        1px solid
        rgba(161, 119, 47, 0.45);

    color: #805e25;

    background:
        rgba(255, 255, 255, 0.72);

}


.svd-suits-button--secondary:hover {

    background: #ffffff;

    border-color: #a77d32;

}


/* =========================================================
   INTRODUCTION
========================================================= */

.svd-suits-intro {

    width: min(1180px, 90%);

    margin: auto;

    padding: 105px 0;

    text-align: center;

}


.svd-suits-section-eyebrow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-bottom: 18px;

    color: #a77d32;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.24em;

    text-transform: uppercase;

}


.svd-suits-section-eyebrow::before,
.svd-suits-section-eyebrow::after {

    content: "";

    width: 45px;

    height: 1px;

    background: #cfb47e;

}


.svd-suits-intro h2 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(
        34px,
        4vw,
        52px
    );

    font-weight: 400;

    color: #322b25;

}


.svd-suits-intro p {

    max-width: 760px;

    margin: 25px auto 0;

    color: #71675e;

    font-size: 15px;

    line-height: 1.9;

}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.svd-suits-highlights {

    background:

        linear-gradient(
            180deg,
            #fcfaf6,
            #f7f1e7
        );

    border-top:

        1px solid
        rgba(180, 140, 70, 0.12);

    border-bottom:

        1px solid
        rgba(180, 140, 70, 0.12);

    padding: 85px 0;

}


.svd-suits-highlights__inner {

    width: min(1280px, 90%);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;

}


.svd-suits-highlight {

    background:
        rgba(255, 255, 255, 0.72);

    padding: 38px 25px;

    text-align: center;

    border:

        1px solid
        rgba(180, 140, 70, 0.16);

    transition: 0.3s ease;

}


.svd-suits-highlight:hover {

    transform: translateY(-5px);

    background: #ffffff;

    box-shadow:

        0 18px 45px
        rgba(70, 52, 25, 0.07);

}


.svd-suits-highlight__icon {

    width: 58px;

    height: 58px;

    margin:
        0 auto 20px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    border:

        1px solid #d6b87b;

    color: #a87d31;

    font-size: 20px;

}


.svd-suits-highlight h3 {

    margin: 0 0 12px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;

    font-weight: 400;

    color: #3a322c;

}


.svd-suits-highlight p {

    margin: 0;

    color: #756b62;

    font-size: 13px;

    line-height: 1.75;

}


/* =========================================================
   COLLECTION
========================================================= */

.svd-suits-collection {

    width: min(1320px, 90%);

    margin: auto;

    padding: 105px 0;

}


.svd-suits-collection__heading {

    text-align: center;

    margin-bottom: 52px;

}


.svd-suits-collection__heading h2 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(
        34px,
        4vw,
        52px
    );

    font-weight: 400;

    color: #312a24;

}


.svd-suits-collection__heading p {

    max-width: 650px;

    margin: 18px auto 0;

    color: #766c62;

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   CATEGORY CARDS
========================================================= */

.svd-suits-categories {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;

}


.svd-suits-category {

    position: relative;

    min-height: 430px;

    overflow: hidden;

    background: #f4efe7;

    text-decoration: none;

    display: block;

}


.svd-suits-category img {

    width: 100%;

    height: 430px;

    object-fit: cover;

    display: block;

    transition:
        transform 0.7s ease;

}


.svd-suits-category:hover img {

    transform: scale(1.06);

}


.svd-suits-category::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            to top,
            rgba(28, 22, 17, 0.70),
            rgba(28, 22, 17, 0.03) 65%
        );

}


.svd-suits-category__content {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    z-index: 2;

    padding: 32px;

    color: #ffffff;

}


.svd-suits-category__content p {

    margin: 0 0 8px;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.20em;

    text-transform: uppercase;

    color: #ead5a4;

}


.svd-suits-category__content h3 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 32px;

    font-weight: 400;

    line-height: 1.15;

}


.svd-suits-category__content span {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 18px;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.08em;

    text-transform: uppercase;

}


/* =========================================================
   FEATURE SECTION
========================================================= */

.svd-suits-feature {

    background: #f8f5ef;

}


.svd-suits-feature__inner {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    min-height: 620px;

}


.svd-suits-feature__image {

    overflow: hidden;

}


.svd-suits-feature__image img {

    width: 100%;

    height: 100%;

    min-height: 620px;

    object-fit: cover;

    display: block;

}


.svd-suits-feature__content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    padding: 80px 12%;

}


.svd-suits-feature__content h2 {

    margin: 0;

    max-width: 520px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(
        40px,
        4vw,
        58px
    );

    font-weight: 400;

    line-height: 1.12;

    color: #322b25;

}


.svd-suits-feature__content h2 span {

    color: #a77d32;

}


.svd-suits-feature__content p {

    max-width: 520px;

    margin: 24px 0 0;

    color: #71675e;

    font-size: 15px;

    line-height: 1.9;

}


.svd-suits-feature__content .svd-suits-button {

    margin-top: 32px;

}


/* =========================================================
   CTA
========================================================= */

.svd-suits-cta {

    padding:
        105px 20px;

    text-align: center;

    background:

        linear-gradient(
            135deg,
            #392d25,
            #241c17
        );

}


.svd-suits-cta__inner {

    max-width: 760px;

    margin: auto;

}


.svd-suits-cta p {

    margin: 0 0 16px;

    color: #d7b66f;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.22em;

    text-transform: uppercase;

}


.svd-suits-cta h2 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(
        38px,
        5vw,
        62px
    );

    font-weight: 400;

    line-height: 1.15;

    color: #ffffff;

}


.svd-suits-cta .svd-suits-button {

    margin-top: 34px;

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {

    .svd-suits-hero {

        min-height: 560px;

    }


    .svd-suits-highlights__inner {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .svd-suits-categories {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .svd-suits-feature__content {

        padding:
            70px 9%;

    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 600px) {

    .svd-suits-hero {

        min-height: 620px;

    }


    .svd-suits-hero__overlay {

        background:

            linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.97) 0%,
                rgba(255, 255, 255, 0.90) 65%,
                rgba(255, 255, 255, 0.55) 100%
            );

    }


    .svd-suits-hero__content {

        padding:
            100px 0 80px;

    }


    .svd-suits-hero h1 {

        font-size: 48px;

    }


    .svd-suits-hero p {

        font-size: 14px;

        line-height: 1.8;

    }


    .svd-suits-hero__actions {

        flex-direction: column;

    }


    .svd-suits-button {

        width: 100%;

    }


    .svd-suits-intro {

        padding:
            75px 0;

    }


    .svd-suits-highlights {

        padding:
            60px 0;

    }


    .svd-suits-highlights__inner {

        grid-template-columns:
            1fr;

        gap: 14px;

    }


    .svd-suits-highlight {

        padding:
            30px 20px;

    }


    .svd-suits-collection {

        padding:
            75px 0;

    }


    .svd-suits-categories {

        grid-template-columns:
            1fr;

    }


    .svd-suits-category {

        min-height: 400px;

    }


    .svd-suits-category img {

        height: 400px;

    }


    .svd-suits-feature__inner {

        grid-template-columns:
            1fr;

    }


    .svd-suits-feature__image img {

        min-height: 380px;

    }


    .svd-suits-feature__content {

        padding:
            55px 8%;

    }


    .svd-suits-feature__content h2 {

        font-size: 38px;

    }


    .svd-suits-cta {

        padding:
            75px 20px;

    }

}





/* =========================================================
   SHRI VATSADARBAR – MASTER FOOTER
========================================================= */

/* =========================================================
   FOOTER BASE
========================================================= */

.svd-footer {
    width: 100%;
    background: #fbf7ef;
    color: #4a4037;
    font-family: inherit;
    border-top: 1px solid rgba(181, 140, 65, 0.25);
    position: relative;
    overflow: hidden;
}

.svd-footer::before,
.svd-footer::after {
    content: "✦";
    position: absolute;
    font-size: 180px;
    color: rgba(181, 140, 65, 0.05);
    pointer-events: none;
    line-height: 1;
}

.svd-footer::before {
    left: -40px;
    bottom: -55px;
}

.svd-footer::after {
    right: -40px;
    bottom: -55px;
}


/* =========================================================
   MAIN FOOTER AREA
========================================================= */

.svd-footer-main {
    max-width: 1500px;
    margin: 0 auto;
    padding: 65px 35px 45px;

    display: grid;

    grid-template-columns:
        minmax(230px, 1.6fr)
        repeat(4, minmax(130px, 1fr))
        minmax(230px, 1.6fr);

    gap: 35px;

    position: relative;
    z-index: 1;
}


/* =========================================================
   BRAND SECTION
========================================================= */

.svd-footer-brand {
    padding-right: 15px;
}

.svd-footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 18px;
}

.svd-footer-logo img {
    display: block;
    max-width: 210px;
    width: 100%;
    height: auto;
}

.svd-footer-brand p {
    margin: 0;
    max-width: 310px;

    font-size: 14px;
    line-height: 1.8;

    color: #685d53;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.svd-footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.svd-footer-socials a {
    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(181, 140, 65, 0.45);
    border-radius: 50%;

    color: #9c742d;
    background: #fffdf8;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.svd-footer-socials a:hover {
    background: #b58c41;
    color: #ffffff;
    transform: translateY(-3px);
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.svd-footer-column {
    padding-left: 25px;
    border-left: 1px solid rgba(181, 140, 65, 0.16);
}

.svd-footer-column h4 {
    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;
    font-weight: 600;

    color: #9b7229;

    letter-spacing: 0.2px;
}

.svd-footer-column h4::after {
    content: "";
    display: block;

    width: 35px;
    height: 1px;

    background: #c7a45d;

    margin-top: 9px;
}

.svd-footer-column > a {
    display: block;

    width: fit-content;

    margin-bottom: 10px;

    font-size: 14px;

    color: #655b52;

    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.svd-footer-column > a:hover {
    color: #a57b31;
    transform: translateX(3px);
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.svd-footer-contact {
    min-width: 0;
}

.svd-footer-contact-item {
    display: flex;
    align-items: flex-start;

    gap: 11px;

    margin-bottom: 15px;

    font-size: 14px;
    line-height: 1.65;

    color: #655b52;
}

.svd-footer-contact-item i {
    min-width: 17px;

    margin-top: 5px;

    color: #a57b31;

    font-size: 15px;
}

.svd-footer-contact-item a {
    color: #655b52;
    text-decoration: none;

    word-break: break-word;

    transition: color 0.2s ease;
}

.svd-footer-contact-item a:hover {
    color: #a57b31;
}

.svd-footer-contact-item span {
    color: #655b52;
}


/* =========================================================
   DECORATIVE DIVIDER
========================================================= */

.svd-footer-divider {
    max-width: 1430px;

    height: 1px;

    margin: 0 auto;

    background: linear-gradient(
        to right,
        transparent,
        rgba(181, 140, 65, 0.5),
        transparent
    );

    position: relative;
}

.svd-footer-divider::after {
    content: "✦";

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background: #fbf7ef;

    padding: 0 15px;

    color: #b58c41;

    font-size: 18px;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.svd-footer-bottom {
    max-width: 1500px;

    margin: 0 auto;

    padding: 25px 35px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    position: relative;
    z-index: 1;
}

.svd-footer-bottom p {
    margin: 0;

    font-size: 13px;

    color: #75695e;
}

.svd-footer-tagline {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #a57b31 !important;

    font-family: Georgia, "Times New Roman", serif;

    font-style: italic;

    font-size: 16px !important;
}

.svd-footer-tagline::before,
.svd-footer-tagline::after {
    content: "";

    width: 28px;
    height: 1px;

    background: rgba(181, 140, 65, 0.6);
}


/* =========================================================
   TABLET RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .svd-footer-main {
        grid-template-columns:
            repeat(3, minmax(180px, 1fr));
    }

    .svd-footer-brand {
        grid-column: span 3;
    }

    .svd-footer-column {
        padding-left: 20px;
    }

}


/* =========================================================
   MOBILE FOOTER
========================================================= */

@media (max-width: 768px) {

    .svd-footer-main {
        display: block;

        padding: 45px 22px 30px;
    }

    .svd-footer-brand {
        text-align: center;

        padding: 0;

        margin-bottom: 35px;
    }

    .svd-footer-logo {
        justify-content: center;
    }

    .svd-footer-logo img {
        max-width: 190px;
    }

    .svd-footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .svd-footer-socials {
        justify-content: center;
    }

    .svd-footer-column {
        border-left: none;

        border-top: 1px solid rgba(181, 140, 65, 0.16);

        padding: 22px 0;

        margin: 0;
    }

    .svd-footer-column h4 {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .svd-footer-column h4::after {
        width: 30px;
    }

    .svd-footer-contact-item {
        font-size: 13.5px;
    }

    .svd-footer-divider {
        margin: 0 22px;
    }

    .svd-footer-bottom {
        padding: 22px;

        flex-direction: column;

        text-align: center;

        gap: 12px;
    }

    .svd-footer-tagline {
        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .svd-footer-main {
        padding-left: 18px;
        padding-right: 18px;
    }

    .svd-footer-bottom {
        padding-left: 18px;
        padding-right: 18px;
    }

    .svd-footer-tagline {
        font-size: 14px !important;
    }

}







/* =========================================================
   HERO DOTS — MOBILE TOUCH ENHANCEMENT
   ---------------------------------------------------------
   The shared hero controller creates .hero-dot buttons.
   This gives each dot a generous touch target while
   keeping the visible indicator small and premium.
   ========================================================= */

.hero-dot {
    position: relative;

    width: 44px;
    height: 44px;

    margin: 0;
    padding: 0;

    border: 0;
    outline: none;

    background: transparent;

    display: grid;
    place-items: center;

    cursor: pointer;

    -webkit-tap-highlight-color: transparent;

    touch-action: manipulation;
}


/* Visible dot */
.hero-dot::before {
    content: "";

    display: block;

    width: 7px;
    height: 7px;

    border:
        1px solid #ffffff;

    border-radius: 50%;

    background: transparent;

    transition:
        width .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


/* Active visible dot */
.hero-dot.active::before {
    width: 25px;

    border-radius: 5px;

    background: var(--gold);

    border-color: var(--gold);
}


/* Comfortable touch/hover feedback */
.hero-dot:hover::before,
.hero-dot:focus-visible::before {
    transform: scale(1.12);
}


/* Keep the slider dot group compact but finger-friendly */
.slider-dots {
    gap: 2px;
}


/* Extra mobile spacing and positioning */
@media (max-width: 900px) {

    .slider-dots {
        bottom: 18px;

        gap: 1px;
    }

    .hero-dot {
        width: 46px;
        height: 46px;
    }

}


/* Very small phones */
@media (max-width: 480px) {

    .slider-dots {
        bottom: 16px;

        gap: 0;
    }

    .hero-dot {
        width: 48px;
        height: 48px;
    }

}





/* =========================================================
   SHARED CART DRAWER
========================================================= */

.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(30,20,15,.45);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    width: min(440px,100%);
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .35s ease;
    box-shadow: -10px 0 35px rgba(0,0,0,.12);
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 25px;
    border-bottom: 1px solid #e9e0d5;
}

.cart-header h2 {
    margin: 0;
    font:
        500 30px
        "Cormorant Garamond",
        Georgia,
        serif;
    color: #241e1a;
}

.cart-close {
    width: 38px;
    height: 38px;
    border: 0;
    background: #faf6ef;
    color: #4b0713;
    border-radius: 50%;
    cursor: pointer;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
}

.cart-empty {
    text-align: center;
    padding: 70px 20px;
    color: #82766d;
}

.cart-empty i {
    display: block;
    margin-bottom: 18px;
    font-size: 38px;
    color: #b88a2d;
}

.cart-empty strong {
    display: block;
    font:
        500 26px
        "Cormorant Garamond",
        Georgia,
        serif;
    color: #342b26;
}

.cart-empty span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
}

.cart-item {
    display: grid;
    grid-template-columns: 75px 1fr auto;
    gap: 13px;
    padding: 15px 0;
    border-bottom: 1px solid #eee5db;
}

.cart-item-image {
    width: 75px;
    height: 90px;
    object-fit: cover;
    background: #f5eee5;
}

.cart-item-details h3 {
    margin: 0 0 5px;
    font:
        500 19px/1.1
        "Cormorant Garamond",
        Georgia,
        serif;
    color: #302722;
}

.cart-item-code {
    font-size: 9px;
    color: #988c82;
    letter-spacing: .7px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    margin-top: 12px;
}

.cart-qty-button {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd0c0;
    background: #fff;
    color: #4b0713;
    cursor: pointer;
}

.cart-qty-value {
    min-width: 30px;
    text-align: center;
    font-size: 11px;
}

.cart-remove {
    border: 0;
    background: transparent;
    color: #9a8d82;
    cursor: pointer;
}

.cart-footer {
    border-top: 1px solid #e9e0d5;
    padding: 18px 25px;
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 12px;
    color: #6f655d;
}

.cart-whatsapp {
    width: 100%;
    padding: 14px;
    border: 0;
    background: #4b0713;
    color: #fff;
    font:
        10px
        "DM Sans",
        sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

.cart-clear {
    width: 100%;
    margin-top: 8px;
    border: 0;
    background: transparent;
    color: #8a7c71;
    padding: 9px;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

@media (max-width: 600px) {
    .cart-drawer {
        width: 100%;
    }
}
