:root {
    --primary-red: #c62828;      
    --accent-gold: #e5a913;      
    --light-gray-texture: #f8f9fa;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Applied exact font stack[cite: 6] */
}

body {
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

/* Catalog Style Top Bar Utilities[cite: 6] */
.top-bar {
    background-color: #000000;
    color: #ffffff;
    font-size: 11px;
    padding: 8px 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #d4af37;
}
.top-bar-left span { margin-right: 20px; }
.top-bar-right span { margin-left: 15px; }

/* Main Header Layout */
.sakthi-style-header {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid #e0e0e0;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.brand-logo { height: 100px; width: 100px; }
.logo-tagline { font-size: 10px; font-weight: 700; letter-spacing: 3px; color: #555555; margin-top: 4px; }

.main-navigation { display: flex; gap: 15px; }
.menu-toggle, .menu-backdrop { display: none; }

.nav-item {
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 12px;
    transition: color 0.2s;
}
.nav-item:hover, .nav-item.active { color: var(--primary-red); }

/* HERO BANNER SLIDER */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    background-color: #000;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide-content { max-width: 600px; color: #ffffff; z-index: 10; }
.hero-slide.active .hero-slide-content { animation: heroContentIn 0.75s ease both; }
.hero-slide-content h1 { font-size: 42px; font-weight: 700; margin-bottom: 15px; text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.hero-slide-content p { font-size: 16px; margin-bottom: 25px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.slider-cta-btn { display: inline-block; background-color: var(--primary-red); color: #fff; padding: 10px 28px; text-decoration: none; font-weight: 700; border-radius: 4px; border: 1px solid #fff; }

.slide-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0, 0, 0, 0.4); color: white; padding: 14px; border: none; cursor: pointer; font-size: 18px; z-index: 100; }
.left-arrow { left: 20px; }
.right-arrow { right: 20px; }

.slider-dot-navigation { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 100; }
.navigation-dot { width: 10px; height: 10px; background: rgba(255, 255, 255, 0.5); border-radius: 50%; cursor: pointer; }
.navigation-dot.active { background: var(--primary-red); }

/* Layout Grid Elements */
.section-container { max-width: 1200px; margin: 0 auto; padding: 50px 20px; }
.watermark-bg { font-size: 70px; font-weight: 800; color: rgba(0, 0, 0, 0.03); position: absolute; z-index: 1; margin-top: -30px; letter-spacing: 2px; text-transform: uppercase; }
.watermark-center { font-size: 80px; font-weight: 800; color: rgba(0, 0, 0, 0.02); text-align: center; width: 100%; position: absolute; margin-top: 5px; z-index: 1; }
.top-mini-tag { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: #777777; margin-bottom: 4px; position: relative; z-index: 2; }
.sub-heading { font-size: 32px; color: #222; font-weight: 800; margin-bottom: 20px; position: relative; z-index: 2; text-transform: uppercase; }
.center-heading { font-size: 30px; color: #222; text-align: center; font-weight: 700; margin-bottom: 40px; position: relative; z-index: 2; }
.intro-description { font-size: 14px; color: #666666; line-height: 1.7; position: relative; z-index: 2; text-align: justify; }
.read-more-btn { display: inline-block; color: #111; font-weight: 700; text-decoration: none; font-size: 12px; margin-top: 20px; border-bottom: 2px solid var(--accent-gold); padding-bottom: 2px; text-transform: uppercase; letter-spacing: 1px; }

/* Profile Split Layout */
.profile-split-layout { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; align-items: center; }
.profile-box-wrapper { width: 100%; display: flex; justify-content: center; }
.img-frame { background: #ffffff; padding: 18px; box-shadow: 0 4px 25px rgba(0,0,0,0.06); width: 100%; max-width: 320px; border: 1px solid #f0f0f0; position: relative; aspect-ratio: 1 / 1; }
.gallery-photo-element { width: 100%; height: 100%; object-fit: cover; display: block; }

.product-mini-slider { overflow: hidden; }
.intro-slide-img { position: absolute; top: 18px; left: 18px; width: calc(100% - 36px); height: calc(100% - 36px); object-fit: contain; opacity: 0; visibility: hidden; transition: opacity 0.4s ease-in-out; background: #fff; z-index: 1; }
.intro-slide-img.active { opacity: 1; visibility: visible; z-index: 2; }

/* Dynamic Products Showcase Grid Layout */
.dynamic-showcase-container { background: #ffffff; border: 1px solid #e2e8f0; box-shadow: var(--card-shadow); padding: 40px !important; border-radius: 8px; position: relative; z-index: 10; }
.showcase-top-row { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #edf2f7; padding-bottom: 20px; margin-bottom: 30px; }
.mini-icons-grid { display: flex; gap: 15px; }
.mini-icon-circle { width: 65px; height: 65px; border-radius: 50%; background: #ffffff; border: 2px solid #e2e8f0; padding: 8px; cursor: pointer; transition: all 0.2s; display: flex; justify-content: center; align-items: center; }
.mini-icon-circle img { max-width: 100%; max-height: 100%; object-fit: contain; }
.mini-icon-circle:hover, .mini-icon-circle.active { border-color: var(--primary-red); box-shadow: 0 0 10px rgba(198, 40, 40, 0.2); transform: scale(1.05); }
.showcase-arrows { display: flex; gap: 10px; }
.showcase-arrow-btn { width: 40px; height: 40px; border: 1px solid #cbd5e0; background: #ffffff; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; border-radius: 4px; }
.showcase-arrow-btn:hover { background: var(--primary-red); color: #ffffff; border-color: var(--primary-red); }
.showcase-main-body { display: flex; align-items: center; gap: 50px; }
.showcase-display-left { flex: 1; display: flex; justify-content: center; align-items: center; }
.main-display-image-wrap { width: 100%; max-width: 340px; padding: 20px; background: #ffffff; display: flex; justify-content: center; align-items: center; }
.main-display-image-wrap img { max-width: 100%; max-height: 320px; object-fit: contain; filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); transition: opacity 0.3s; }
.showcase-content-right { flex: 1.2; }
.showcase-content-right h3 { font-size: 28px; color: #1a202c; font-weight: 700; margin-bottom: 10px; }
.showcase-tag-bubble { display: inline-block; padding: 4px 14px; background: #fffecbb; color: #744210; font-size: 12px; font-weight: 700; border-radius: 20px; margin-bottom: 20px; border: 1px solid #fbd38d; }
.showcase-content-right p { font-size: 15px; color: #4a5568; line-height: 1.7; margin-bottom: 20px; text-align: justify; }
.showcase-pack-info { display: block; font-size: 13px; font-weight: 700; color: #718096; margin-bottom: 25px; }
.all-products-action-link { display: inline-block; color: var(--primary-red); text-decoration: none; font-weight: 700; font-size: 14px; border-bottom: 2px solid var(--primary-red); padding-bottom: 2px; }

/* Services Layout */
.split-layout { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.services-carousel-side { flex: 0.9; display: flex; gap: 15px; }
.service-slide-card { background: #ffffff; border: 1px solid #ddd; box-shadow: 0 2px 8px rgba(0,0,0,0.05); flex: 1; }
.service-img-element { width: 100%; height: 140px; object-fit: cover; }
.service-card-info { padding: 12px; text-align: center; }
.service-card-info h4 { font-size: 13px; color: #333; font-weight: 700; }

/* Testimonials System */
.testimonial-slider-wrapper { position: relative; max-width: 750px; margin: 0 auto; height: 180px; }
.testimonial-card.item-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #ffecbb; border: 1px solid #dddddd; padding: 35px; border-radius: 12px; opacity: 0; visibility: hidden; transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1); text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.testimonial-card.item-slide.active { opacity: 1; visibility: visible; }
.testimonial-quote { font-size: 15px; font-style: italic; color: #444444; margin-bottom: 12px; line-height: 1.6; }
.testimonial-author { color: var(--primary-red); font-weight: 700; font-size: 14px; }
.testimonial-dots-row { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.t-dot { width: 8px; height: 8px; background: #e2e8f0; border-radius: 50%; transition: background 0.3s ease; }
.t-dot.active { background: var(--accent-gold); width: 20px; border-radius: 4px; }

/* ==========================================================================
   UPDATED INLINE LEGAL LINKS BRAND FOOTER (MATCHES IMAGE SPECIFICATION)
   ========================================================================== */
.sakthi-style-footer {
    background: #0d1527; /* Sophisticated deep midnight-blue navy base tint */
    color: #ffffff; 
    padding: 24px 6%; 
    font-size: 13px; 
    border-top: 4px solid var(--primary-red);
}

.footer-top-row {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    max-width: 1200px; 
    margin: 0 auto;
    width: 100%;
}

.copyright-side p {
    font-weight: 400;
    letter-spacing: 0.3px;
    opacity: 0.95;
}

.brand-highlight {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Horizontal Link Elements Styling Rule Matrix */
.footer-legal-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
}

.footer-legal-links li {
    display: flex;
    align-items: center;
}

/* Insert structural vertical line dividers dynamically between lists safely */
.footer-legal-links li:not(:last-child)::after {
    content: "|";
    color: #ffffff;
    opacity: 0.4;
    margin: 0 15px;
    font-size: 12px;
    font-weight: 300;
}

.footer-legal-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--accent-gold);
}

/* Page entrance and scroll reveal animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal-on-scroll,
    .reveal-on-scroll.revealed,
    .hero-slide.active .hero-slide-content {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
    }
}

/* Responsive Adaptive Layer Changes */
@media (max-width: 992px) {
    .profile-split-layout { grid-template-columns: 1fr; text-align: center; }
    .split-layout { flex-direction: column; text-align: center; gap: 25px; }
    .services-carousel-side { width: 100%; }
    .showcase-main-body { flex-direction: column; gap: 30px; }
    .showcase-top-row { justify-content: center; flex-direction: column; gap: 20px; }
}

@media (max-width: 768px) {
    body.menu-open { overflow: hidden; }
    .header-inner { flex-direction: row; padding: 8px 18px; }
    .brand-logo { width: 72px; height: 72px; }
    .menu-toggle { display: flex; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; position: relative; z-index: 2202; }
    .menu-toggle span { display: block; width: 24px; height: 2px; background: #222; transition: transform 0.25s ease, opacity 0.2s ease; }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .main-navigation { position: fixed; top: 0; left: 0; z-index: 2201; width: min(82vw, 320px); height: 100vh; padding: 105px 24px 30px; background: #fff; box-shadow: 8px 0 30px rgba(0,0,0,0.18); flex-direction: column; gap: 4px; transform: translateX(-105%); visibility: hidden; transition: transform 0.3s ease, visibility 0.3s; }
    .main-navigation.open { transform: translateX(0); visibility: visible; }
    .nav-item { width: 100%; padding: 13px 10px; border-bottom: 1px solid #eee; }
    .menu-backdrop { position: fixed; inset: 0; z-index: 2200; background: rgba(0,0,0,0.48); }
    .menu-backdrop.open { display: block; }
    .hero-slider-container { height: 340px; }
    .hero-slide-content h1 { font-size: 26px; }
    .hero-slide-content p { font-size: 14px; }
    .testimonial-slider-wrapper { height: 230px; }
    .watermark-bg, .watermark-center { display: none; }
    
    /* Flip block elements vertically on small screens nicely */
    .footer-top-row {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ========================================================================== 
   PREMIUM BRAND REDESIGN
   ========================================================================== */
:root {
    --primary-red: #b52b24;
    --accent-gold: #d79b2b;
    --forest: #173d31;
    --cream: #f7f1e7;
    --ink: #18221e;
    --muted: #6e746f;
    --card-shadow: 0 24px 60px rgba(32, 45, 39, 0.1);
}

html { scroll-behavior: smooth; }
body { background: #fffdf9; color: var(--ink); }

.top-bar {
    background: var(--forest);
    border: 0;
    padding: 7px max(4%, calc((100% - 1180px) / 2));
    color: rgba(255,255,255,.86);
    letter-spacing: .3px;
}

.sakthi-style-header { box-shadow: 0 8px 30px rgba(23,61,49,.07); border: 0; }
.header-inner { max-width: 1180px; padding: 7px 20px; }
.brand-logo { width: 82px; height: 82px; object-fit: contain; }
.main-navigation { align-items: center; gap: 5px; }
.nav-item { padding: 10px 14px; border-radius: 999px; color: #39443f; }
.nav-item:hover, .nav-item.active { color: #fff; background: var(--primary-red); }

.hero-slider-container { height: min(650px, 72vh); min-height: 500px; }
.hero-slide { padding: 0 max(8%, calc((100% - 1160px) / 2)); background-position: center; }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,31,25,.76) 0%, rgba(12,31,25,.30) 52%, transparent 78%); }
.hero-slide-content { position: relative; max-width: 660px; }
.hero-slide-content::before { content: "SHRI GANGA • PURE FOOD COLLECTION"; display: inline-block; margin-bottom: 18px; color: #ffd88a; font-size: 11px; font-weight: 800; letter-spacing: 2.2px; }
.hero-slide-content h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(42px, 5vw, 70px); line-height: 1.02; letter-spacing: -1.5px; margin-bottom: 22px; }
.hero-slide-content p { max-width: 580px; font-size: 17px; line-height: 1.8; color: rgba(255,255,255,.9); }
.slider-cta-btn { padding: 13px 27px; border: 0; border-radius: 999px; box-shadow: 0 10px 30px rgba(181,43,36,.3); transition: transform .25s, background .25s; }
.slider-cta-btn:hover { background: #d13a31; transform: translateY(-3px); }
.slide-arrow { width: 46px; height: 46px; padding: 0; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; backdrop-filter: blur(6px); }
.navigation-dot { width: 22px; height: 4px; border-radius: 10px; }

.trust-strip { position: relative; z-index: 20; max-width: 1060px; margin: -42px auto 0; padding: 22px 30px; display: grid; grid-template-columns: repeat(3,1fr); background: #fff; border-radius: 18px; box-shadow: 0 22px 60px rgba(23,61,49,.15); }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 4px 24px; border-right: 1px solid #e6e4dc; }
.trust-item:last-child { border-right: 0; }
.trust-icon { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 42px; border-radius: 50%; background: #f8e6df; color: var(--primary-red); font-size: 11px; font-weight: 800; }
.trust-item strong, .trust-item small { display: block; }
.trust-item strong { font-size: 14px; color: var(--forest); }
.trust-item small { color: var(--muted); font-size: 11px; }

.brand-intro-section { position: relative; padding: 105px 0 110px; background: #fffdf9; overflow: hidden; }
.section-container { max-width: 1180px; padding: 55px 25px; }
.profile-split-layout { display: flex !important; flex-wrap: wrap; gap: 0 !important; margin-left: auto; margin-right: auto; }
.profile-split-layout > .intro-text-block { flex: 0 0 50%; width: 50%; min-width: 0; }
.profile-split-layout > .profile-box-wrapper { flex: 0 0 25%; width: 25%; min-width: 0; }
.top-mini-tag, .section-kicker { color: var(--primary-red); font-size: 11px; font-weight: 800; letter-spacing: 2.2px; }
.sub-heading, .center-heading { font-family: Georgia, 'Times New Roman', serif; color: var(--forest); text-transform: none; }
.sub-heading { font-size: clamp(38px,4vw,55px); line-height: 1.1; }
.intro-description { color: var(--muted); font-size: 15px; line-height: 1.9; text-align: left; }
.read-more-btn { color: var(--forest); border-color: var(--primary-red); }
.img-frame { max-width: none; padding: 10px; border: 0; border-radius: 24px; overflow: hidden; box-shadow: var(--card-shadow); }
.gallery-photo-element, .intro-slide-img { border-radius: 17px; }
.watermark-bg, .watermark-center { font-family: Georgia, serif; color: rgba(23,61,49,.035); }

.category-section { position: relative; max-width: 1180px; margin: 0 auto; padding: 50px 25px 140px; }
.category-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 38px; }
.category-heading-row .sub-heading { margin: 6px 0 0; }
.category-heading-row > p { max-width: 430px; color: var(--muted); line-height: 1.8; }
.category-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 18px; }
.category-card { position: relative; min-height: 390px; overflow: hidden; border-radius: 24px; color: #fff; text-decoration: none; box-shadow: 0 18px 45px rgba(23,61,49,.12); isolation: isolate; }
.category-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(10,28,22,.9), rgba(10,28,22,0) 65%); transition: background .4s ease; }
.category-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.22,1,.36,1), filter .4s; }
.category-card:hover img { transform: scale(1.09); filter: saturate(1.12); }
.category-card:hover::after { background: linear-gradient(0deg, rgba(181,43,36,.92), rgba(10,28,22,.05) 72%); }
.category-number { position: absolute; top: 22px; right: 22px; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-size: 11px; backdrop-filter: blur(6px); }
.category-card-copy { position: absolute; left: 28px; right: 28px; bottom: 27px; transform: translateY(25px); transition: transform .35s ease; }
.category-card-copy small, .category-card-copy strong, .category-card-copy span { display: block; }
.category-card-copy small { margin-bottom: 5px; color: #f2ca7d; font-size: 10px; font-weight: 800; letter-spacing: 1.7px; }
.category-card-copy strong { font-family: Georgia, serif; font-size: 30px; line-height: 1.1; }
.category-card-copy span { margin-top: 13px; font-size: 12px; font-weight: 700; opacity: 0; transform: translateY(8px); transition: opacity .35s, transform .35s; }
.category-card:hover .category-card-copy { transform: translateY(0); }
.category-card:hover .category-card-copy span { opacity: 1; transform: translateY(0); }


.brand-intro-section > .section-container,
.category-section > .category-heading-row,
.category-section > .category-grid,
.trending-products-section > .watermark-center,
.trending-products-section > .section-kicker,
.trending-products-section > .center-heading,
.trending-products-section > .dynamic-showcase-container,
.testimonials-section > .watermark-center,
.testimonials-section > .section-kicker,
.testimonials-section > .center-heading,
.testimonials-section > .section-container { position: relative; z-index: 1; }

.trending-products-section { position: relative; padding: 90px 20px 110px; background: var(--cream); overflow: hidden; }
.section-kicker { display: block; position: relative; z-index: 2; text-align: center; margin-bottom: 8px; }
.center-heading { font-size: clamp(34px,4vw,48px); margin-bottom: 42px; }
.dynamic-showcase-container { max-width: 1080px; margin: 0 auto; padding: 24px 34px 34px !important; border: 1px solid rgba(23,61,49,.08); border-radius: 28px; box-shadow: var(--card-shadow); }
.mini-icon-circle { width: 70px; height: 70px; border: 0; background: #f7f3ec; }
.mini-icon-circle:hover, .mini-icon-circle.active { border: 0; background: #fff; box-shadow: 0 0 0 3px var(--primary-red), 0 10px 25px rgba(23,61,49,.12); }
.showcase-arrow-btn { border: 0; border-radius: 50%; background: var(--forest); color: #fff; }
.showcase-main-body { display: grid !important; grid-template-columns: minmax(320px, .9fr) minmax(360px, 1.1fr); align-items: center; gap: 55px; min-height: 440px; padding: 22px 28px 5px; overflow: hidden; }
.showcase-main-body > .showcase-display-left,
.showcase-main-body > .showcase-content-right { width: 100%; min-width: 0; }
.main-display-image-wrap { position: relative; min-height: 350px; border-radius: 28px; background: radial-gradient(circle, #fff 20%, #f5eee2 100%); }
.main-display-image-wrap::after { content: "PREMIUM QUALITY"; position: absolute; left: 18px; bottom: 16px; padding: 6px 10px; border-radius: 999px; background: rgba(23,61,49,.9); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: 1.2px; }
.main-display-image-wrap img { max-height: 310px; }
.showcase-content-right h3 { font-family: Georgia, serif; color: var(--forest); font-size: clamp(34px,4vw,48px); line-height: 1.1; }
.showcase-tag-bubble { background: #f7e6cb; border: 0; color: #805b17; }
.showcase-content-right p { color: var(--muted); line-height: 1.9; text-align: left; }
.all-products-action-link { display: inline-block; padding: 11px 22px; color: #fff; background: var(--primary-red); border: 0; border-radius: 999px; }
.all-products-action-link, .showcase-arrow-btn, .nav-item { transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease; }
.all-products-action-link:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(181,43,36,.25); }
.showcase-arrow-btn:hover { transform: translateY(-2px) scale(1.06); }
.showcase-main-body.slide-changing .showcase-display-left { animation: productImageSlide .45s ease both; }
.showcase-main-body.slide-changing .showcase-content-right { animation: productContentSlide .45s ease both; }
@keyframes productImageSlide { from { opacity: 0; transform: translateX(-25px); } to { opacity: 1; transform: translateX(0); } }
@keyframes productContentSlide { from { opacity: 0; transform: translateX(25px); } to { opacity: 1; transform: translateX(0); } }

.testimonials-section { position: relative; padding: 95px 20px 105px; background: var(--forest); overflow: hidden; }
.testimonials-section .center-heading { color: #fff; }
.testimonials-section .section-kicker { color: #eac16e; }
.testimonials-section .watermark-center { color: rgba(255,255,255,.035); }
.testimonials-section .section-container { padding-top: 0; }
.testimonial-slider-wrapper { max-width: 850px; height: 205px; }
.testimonial-card.item-slide { padding: 42px 70px; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: #234d40; box-shadow: 0 22px 50px rgba(0,0,0,.16); }
.testimonial-quote { color: rgba(255,255,255,.9); font-family: Georgia, serif; font-size: 18px; line-height: 1.8; }
.testimonial-author { color: #efc778; }
.t-dot { background: rgba(255,255,255,.25); }

.sakthi-style-footer { padding: 0; background: #102e25; border: 0; color: #fff; }
.footer-main { padding-top: 72px; padding-bottom: 65px; }
.footer-brand-column { display: flex; align-items: flex-start; gap: 22px; }
.footer-logo { width: 82px; height: 82px; padding: 6px; flex: 0 0 82px; object-fit: contain; background: #fff; border-radius: 18px; }
.footer-eyebrow { display: block; margin-bottom: 9px; color: #efc778; font-size: 10px; font-weight: 800; letter-spacing: 1.8px; }
.footer-brand-column h2 { margin: 0 0 14px; color: #fff; font: 42px/1.05 Georgia, serif; }
.footer-brand-column p { max-width: 390px; margin: 0; color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.75; }
.footer-column h3 { position: relative; margin: 0 0 24px; padding-bottom: 12px; color: #fff; font-size: 15px; font-weight: 700; }
.footer-column h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--accent-gold); }
.footer-nav-list { margin: 0; padding: 0; list-style: none; }
.footer-nav-list li { margin-bottom: 11px; }
.footer-nav-list a, .footer-column address a, .footer-column address span { display: block; color: rgba(255,255,255,.7); text-decoration: none; font-size: 13px; font-style: normal; transition: color .2s, transform .2s; }
.footer-nav-list a:hover, .footer-column address a:hover { color: #efc778; transform: translateX(4px); }
.footer-column address { margin: 0 0 20px; line-height: 1.9; }
.footer-contact-btn { display: inline-block; padding: 10px 18px; border: 1px solid rgba(239,199,120,.65); border-radius: 999px; color: #efc778; text-decoration: none; font-size: 12px; font-weight: 700; transition: .25s; }
.footer-contact-btn:hover { color: #102e25; background: #efc778; }
.footer-bottom { padding: 19px 0; background: #0a211a; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.58); font-size: 11px; }
.brand-highlight { color: #efc778; }
.footer-legal-links { margin: 0; padding: 0; }

@media (max-width: 991.98px) {
    .profile-split-layout > .intro-text-block { flex: 0 0 100%; width: 100%; }
    .profile-split-layout > .profile-box-wrapper { flex: 0 0 50%; width: 50%; }
    .showcase-main-body { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
    .top-bar-right { display: none; }
    .top-bar { justify-content: center; text-align: center; }
    .top-bar-left span:last-child { display: none; }
    .brand-logo { width: 66px; height: 66px; }
    .main-navigation { padding-top: 95px; background: #fffdf9; }
    .hero-slider-container { height: 520px; min-height: 520px; }
    .hero-slide { padding: 0 28px 35px; align-items: flex-end; }
    .hero-slide::after { background: linear-gradient(0deg, rgba(12,31,25,.9) 0%, rgba(12,31,25,.3) 80%); }
    .hero-slide-content h1 { font-size: 39px; }
    .hero-slide-content p { font-size: 14px; line-height: 1.65; }
    .slide-arrow { display: none; }
    .trust-strip { width: calc(100% - 30px); margin-top: -20px; padding: 18px; grid-template-columns: 1fr; }
    .trust-item { justify-content: flex-start; padding: 12px 4px; border-right: 0; border-bottom: 1px solid #eee9df; }
    .trust-item:last-child { border-bottom: 0; }
    .brand-intro-section { padding: 55px 0 75px; }
    .section-container { padding: 35px 18px; }
    .profile-split-layout { width: 100%; padding-left: 18px; padding-right: 18px; }
    .profile-split-layout > .intro-text-block { flex: 0 0 100%; width: 100%; }
    .profile-split-layout > .profile-box-wrapper { flex: 0 0 50%; width: 50%; padding-left: 6px; padding-right: 6px; }
    .img-frame { aspect-ratio: 1 / 1; }
    .intro-description { width: 100%; max-width: none; }
    .category-section { padding: 45px 15px 95px; }
    .category-heading-row { align-items: flex-start; flex-direction: column; gap: 12px; }
    .category-grid { grid-template-columns: 1fr; }
    .category-card { min-height: 320px; }
    .category-card-copy { transform: none; }
    .category-card-copy span { opacity: 1; transform: none; }
    .intro-text-block { text-align: left; }
    .trending-products-section, .testimonials-section { padding: 65px 10px 75px; }
    .dynamic-showcase-container { padding: 18px 16px 34px !important; }
    .mini-icons-grid { width: 100%; justify-content: space-between; gap: 7px; }
    .mini-icon-circle { width: 55px; height: 55px; }
    .main-display-image-wrap { min-height: 270px; }
    .showcase-main-body { width: 100%; min-height: 0; padding: 10px 0 0; }
    .showcase-content-right h3 { font-size: 34px; }
    .testimonial-slider-wrapper { height: 285px; }
    .testimonial-card.item-slide { padding: 30px 24px; }
    .testimonial-quote { font-size: 15px; }
    .footer-main { padding: 50px 22px 42px; }
    .footer-brand-column { flex-direction: column; gap: 18px; }
    .footer-logo { width: 70px; height: 70px; flex-basis: 70px; }
    .footer-brand-column h2 { font-size: 34px; }
    .footer-column h3 { margin-bottom: 18px; }
    .footer-bottom { padding: 20px 18px; text-align: center; }
    .footer-legal-links li:not(:last-child)::after { margin: 0 9px; }
}
