/* ==========================================================================
   Vasudevan Pathirakadai - Premium Red & Yellow Theme Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. CSS Variables & Reset
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --color-bg-dark: #FFFDF0; /* Luxurious warm cream/ivory background */
    --color-bg-card: #ffffff;
    --color-bg-card-hover: #fffef2;
    --color-border: rgba(154, 0, 10, 0.1);
    --color-border-hover: rgba(254, 222, 6, 0.6);
    
    --color-text-primary: #1f0a0c; /* Dark burgundy-black for high contrast readability */
    --color-text-secondary: #4a3436; /* Warm muted brown-grey */
    --color-text-muted: #7d6365;
    
    /* Brand Theme Accents (Red & Yellow from Board) */
    --color-yellow: #FEDE06; /* Vibrant board yellow */
    --color-yellow-hover: #FFF133;
    --color-red: #9A000A; /* Deep crimson/maroon red */
    --color-red-hover: #B7000C;
    --color-red-glow: rgba(154, 0, 10, 0.08);
    --color-yellow-glow: rgba(254, 222, 6, 0.25);
    
    /* Keep legacy system compatibility, mapped to red and yellow */
    --color-gold: #9A000A; /* Red serves as the premium gold element now */
    --color-gold-hover: #B7000C;
    --color-copper: #9A000A;
    --color-copper-glow: rgba(154, 0, 10, 0.12);
    --color-brass-glow: rgba(254, 222, 6, 0.25);
    
    /* Fonts */
    --font-display: 'Cinzel', 'Playfair Display', serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-tamil: 'Mukta Malar', 'Arima', sans-serif;
    
    /* Layout */
    --header-height: 80px;
    --header-height-scrolled: 70px;
    --container-max-width: 1280px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    background: radial-gradient(circle at 50% 0%, #FFFEE6 0%, var(--color-bg-dark) 70%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(154, 0, 10, 0.25);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-red);
}

/* Typography Helper Classes */
.font-display {
    font-family: var(--font-display);
    letter-spacing: 0.05em;
}
.font-traditional {
    font-family: var(--font-tamil);
}
.text-gold {
    color: var(--color-red); /* Mapped to brand red */
}

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: 1px solid transparent;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-yellow) 0%, #E6C800 100%);
    color: var(--color-red);
    border: 1px solid rgba(154, 0, 10, 0.15);
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(30deg);
    transition: none;
    pointer-events: none;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(254, 222, 6, 0.35);
    background: linear-gradient(135deg, var(--color-yellow-hover) 0%, var(--color-yellow) 100%);
}
.btn-primary:hover::after {
    left: 150%;
    transition: all 0.8s ease-in-out;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--color-red);
    color: var(--color-red);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    border-color: var(--color-red);
    color: var(--color-yellow);
    background: var(--color-red);
    box-shadow: 0 10px 20px rgba(154, 0, 10, 0.15);
}

.btn-gold {
    /* Keep class reference valid, primary inherits styles */
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
}

/* Containers */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* --------------------------------------------------------------------------
   1. Preloader & Custom Cursor (Removed)
   -------------------------------------------------------------------------- */
#loader {
    display: none !important;
}

.custom-cursor, .custom-cursor-dot {
    display: none !important;
}

/* --------------------------------------------------------------------------
   2. Sticky Navigation Header
   -------------------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: transparent;
    z-index: 900;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    height: var(--header-height-scrolled);
    background: rgba(255, 253, 240, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(154, 0, 10, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-img {
    height: 68px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo-img {
    height: 56px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: var(--color-red);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-subtitle {
    color: var(--color-text-secondary);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-red);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

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

/* Inquiry Cart Trigger Button */
.cart-trigger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-red);
    font-size: 1.25rem;
    position: relative;
    padding: 8px;
    transition: var(--transition-fast);
}

.cart-trigger:hover {
    color: var(--color-red-hover);
    transform: scale(1.08);
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--color-red);
    color: var(--color-yellow);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-yellow);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-red);
    transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   3. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: 90% center;
    opacity: 0.9;
    pointer-events: none;
    z-index: 1;
}

.hero-bg-parallax::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #FFFDF0 30%, rgba(255, 253, 240, 0.4) 100%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.badge-wrapper {
    margin-bottom: 20px;
}

.hero-badge {
    background: rgba(254, 222, 6, 0.15);
    border: 1px solid rgba(154, 0, 10, 0.2);
    color: var(--color-red);
    padding: 6px 14px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 20px;
    display: inline-block;
    font-weight: 700;
}

.title-tamil {
    font-size: 2.3rem;
    color: var(--color-red);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.title-english {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    background: linear-gradient(to right, var(--color-red), #500005);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-cta-wrapper {
    display: flex;
    gap: 20px;
}

/* Hero Showcase Frame */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-featured-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
    animation: floatVessel 6s infinite ease-in-out;
}

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

@keyframes floatVessel {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* --------------------------------------------------------------------------
   4. Stats Section (Vibrant Yellow Background Banner)
   -------------------------------------------------------------------------- */
.stats-section {
    padding: 60px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-yellow);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.03);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    padding: 10px;
}

.stat-number-wrapper {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-red);
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-display);
    text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(154, 0, 10, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   5. Interactive Metal Showcase Section
   -------------------------------------------------------------------------- */
.showcase-section {
    padding: 100px 0;
    position: relative;
}

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

.section-tamil-title {
    font-size: 1.25rem;
    color: var(--color-red);
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--color-red);
}

.section-desc {
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.showcase-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 50px;
    align-items: start;
}

.metal-tabs-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.metal-tab {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 1.2rem 1.8rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.metal-tab:hover {
    border-color: var(--color-border-hover);
    transform: translateX(5px);
    background: rgba(254, 222, 6, 0.05);
}

.metal-tab.active {
    background: rgba(254, 222, 6, 0.12);
    border-color: var(--color-red);
    box-shadow: 0 4px 15px rgba(154, 0, 10, 0.04);
}

.tab-name-box {
    display: flex;
    flex-direction: column;
}

.tab-title {
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-primary);
}

.metal-tab.active .tab-title {
    color: var(--color-red);
}

.tab-tamil {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.tab-arrow {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.metal-tab.active .tab-arrow {
    color: var(--color-red);
    transform: translateX(5px);
}

/* Metal Display Card */
.metal-display-card-wrapper {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 40px;
    min-height: 480px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(154, 0, 10, 0.03);
}

.metal-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--color-yellow-glow) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    transition: background 0.8s ease;
}

.metal-info {
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.metal-tamil-badge {
    color: var(--color-red);
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.metal-main-title {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
    color: var(--color-red);
}

.metal-desc-para {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.metal-benefits-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 15px;
    font-weight: 700;
}

.metal-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.metal-benefits-list li {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.metal-benefits-list li i {
    color: var(--color-red);
    margin-top: 3px;
    font-size: 0.85rem;
}

.metal-visual-box {
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.metal-showcase-img {
    max-width: 90%;
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(154, 0, 10, 0.1));
    transition: transform 0.5s ease;
}

.metal-display-card-wrapper:hover .metal-showcase-img {
    transform: scale(1.05) rotate(2deg);
}

/* --------------------------------------------------------------------------
   6. Product Catalog Section
   -------------------------------------------------------------------------- */
.catalog-section {
    padding: 100px 0;
    background: rgba(254, 222, 6, 0.03);
    border-top: 1px solid var(--color-border);
}

.catalog-controls {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.catalog-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.catalog-search-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
}

.catalog-search-input {
    width: 100%;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 1rem 1rem 1rem 3.5rem;
    border-radius: 30px;
    color: var(--color-text-primary);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition-fast);
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
}

.catalog-search-input:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 15px rgba(154, 0, 10, 0.08);
}

.filter-buttons-wrapper {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--color-border-hover);
    color: var(--color-text-primary);
    background: rgba(254, 222, 6, 0.1);
}

.filter-btn.active {
    background: var(--color-red);
    color: var(--color-yellow);
    border-color: var(--color-red);
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(154, 0, 10, 0.2);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(154, 0, 10, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.product-card:hover {
    border-color: var(--color-yellow);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(154, 0, 10, 0.06);
}

.product-image-box {
    position: relative;
    background: rgba(254, 222, 6, 0.02);
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(154, 0, 10, 0.03);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-red);
    border: 1px solid var(--color-yellow);
    color: var(--color-yellow);
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 3px;
}

.product-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-meta-row {
    margin-bottom: 8px;
}

.product-metal-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    font-weight: 700;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-text-primary);
}

.product-tamil-title {
    font-size: 0.95rem;
    color: var(--color-red);
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-action-row {
    margin-top: auto;
}

/* No products found message */
.no-products-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 20px;
    border: 1px dashed var(--color-border);
    border-radius: 8px;
    color: var(--color-text-muted);
}

.no-products-msg i {
    font-size: 2.5rem;
    color: var(--color-red);
    margin-bottom: 15px;
    opacity: 0.5;
}

/* --------------------------------------------------------------------------
   7. Live Showroom Gallery (Showcasing User Images)
   -------------------------------------------------------------------------- */
.gallery-section {
    padding: 100px 0;
    border-top: 1px solid var(--color-border);
}

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

.gallery-item {
    position: relative;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(154, 0, 10, 0.9) 0%, rgba(154, 0, 10, 0.2) 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-item:hover {
    border-color: var(--color-red);
    transform: scale(1.02);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--color-yellow);
    font-weight: 700;
}

.gallery-sub {
    font-size: 0.75rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Custom Spans for Masonry effect */
.gallery-item.col-2 {
    grid-column: span 2;
}

.gallery-item.row-2 {
    grid-row: span 2;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-item.col-2 {
        grid-column: span 1;
    }
}

/* --------------------------------------------------------------------------
   8. Founder & Legacy Section
   -------------------------------------------------------------------------- */
.about-section {
    padding: 100px 0;
    background: rgba(254, 222, 6, 0.05);
    border-top: 1px solid var(--color-border);
}

.about-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.founder-card {
    position: relative;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 20px;
    background: var(--color-bg-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(154, 0, 10, 0.02);
}

.founder-img-box {
    width: 100%;
    aspect-ratio: 0.85;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid rgba(154, 0, 10, 0.05);
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.founder-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--color-red);
}

.founder-desig {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
}

/* Timeline */
.about-details {
    display: flex;
    flex-direction: column;
}

.about-tamil-quote {
    font-size: 1.3rem;
    color: var(--color-red);
    margin-bottom: 15px;
    line-height: 1.5;
    font-style: italic;
    font-weight: 700;
}

.about-para {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 35px;
}

.legacy-timeline {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -36px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-red);
    border: 2px solid var(--color-bg-dark);
}

.timeline-year {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-red);
    margin-bottom: 4px;
    font-family: var(--font-display);
}

.timeline-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--color-text-primary);
}

.timeline-desc {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.45;
}

/* --------------------------------------------------------------------------
   9. Vessel Care Accordion (FAQs)
   -------------------------------------------------------------------------- */
.faq-section {
    padding: 100px 0;
    border-top: 1px solid var(--color-border);
}

.faq-layout {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-fast);
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
}

.accordion-item.active {
    border-color: var(--color-red);
}

.accordion-header {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.accordion-title-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.accordion-num {
    font-family: var(--font-display);
    color: var(--color-red);
    font-weight: 800;
    font-size: 1.1rem;
}

.accordion-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text-primary);
}

.accordion-icon {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--color-red);
}

.accordion-body {
    padding: 0 30px;
    display: none;
    border-top: 1px solid transparent;
}

.accordion-item.active .accordion-body {
    border-color: var(--color-border);
}

.accordion-content {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.accordion-content p {
    margin-bottom: 15px;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   10. Contact Form Section
   -------------------------------------------------------------------------- */
.contact-section {
    padding: 100px 0;
    border-top: 1px solid var(--color-border);
    background: rgba(254, 222, 6, 0.03);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(254, 222, 6, 0.15);
    border: 1px solid rgba(154, 0, 10, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-red);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-text-box h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-red);
}

.contact-text-box p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.contact-text-box a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 600;
}

.contact-text-box a:hover {
    color: var(--color-red);
}

/* Map Frame */
.contact-map-box {
    margin-top: 40px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}

.contact-map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(10%) contrast(90%);
}

/* Contact Form Card */
.contact-form-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(154, 0, 10, 0.03);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    font-weight: 700;
}

.form-input {
    width: 100%;
    background: rgba(254, 222, 6, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 12px 18px;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 10px rgba(154, 0, 10, 0.05);
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239A000A' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

.form-success-msg {
    display: none;
    align-items: center;
    gap: 12px;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgb(39, 174, 96);
    color: #2ecc71;
    padding: 15px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* --------------------------------------------------------------------------
   11. Inquiry Cart Drawer & Backdrop
   -------------------------------------------------------------------------- */
.cart-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(154, 0, 10, 0.15);
    backdrop-filter: blur(5px);
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.cart-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 440px;
    height: 100vh;
    background: #FFFDF8;
    border-left: 1px solid var(--color-border);
    z-index: 1000;
    transform: translateX(100%);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(154, 0, 10, 0.05);
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-yellow);
}

.cart-header-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-red);
}

.cart-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-red);
    font-size: 1.2rem;
    padding: 8px;
    transition: var(--transition-fast);
}

.cart-close-btn:hover {
    color: var(--color-red-hover);
    transform: rotate(90deg);
}

/* Cart Body */
.cart-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-grow: 1;
}

.cart-empty-icon {
    font-size: 3rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.cart-empty-text {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 25px;
}

/* Cart Items */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: rgba(254, 222, 6, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 5px;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.cart-item-tamil {
    font-size: 0.78rem;
    color: var(--color-red);
    display: block;
    font-weight: 600;
}

.cart-item-remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-muted);
    padding: 8px;
    transition: var(--transition-fast);
}

.cart-item-remove-btn:hover {
    color: var(--color-red);
}

/* Cart Footer Form */
.cart-sidebar-footer {
    padding: 30px;
    border-top: 1px solid var(--color-border);
    background: rgba(254, 222, 6, 0.04);
}

.cart-form-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-red);
    margin-bottom: 15px;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   12. Footer Section (Burgundy Red Background)
   -------------------------------------------------------------------------- */
.main-footer {
    background: #500005; /* Rich deep crimson-burgundy matching board contrast */
    border-top: 2px solid var(--color-yellow);
    padding: 80px 0 30px;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-about-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 25px;
}

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

.footer-about-text {
    color: #ffd6d9;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd6d9;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-link:hover {
    background: var(--color-yellow);
    border-color: var(--color-yellow);
    color: var(--color-red);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--color-yellow);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #ffd6d9;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-yellow);
    padding-left: 5px;
}

.footer-timings-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.85rem;
    color: #ffd6d9;
}

.footer-timings-list li {
    display: flex;
    justify-content: space-between;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.copyright-text {
    font-size: 0.8rem;
    color: #cda0a3;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-bottom-links a {
    color: #cda0a3;
    font-size: 0.8rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-yellow);
}

/* Hide mobile menu overlay on desktop by default */
.mobile-menu-overlay {
    display: none;
}

/* --------------------------------------------------------------------------
   13. Responsive Adaptations (Media Queries)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .title-english {
        font-size: 3rem;
    }
    .title-tamil {
        font-size: 2rem;
    }
    .showcase-layout {
        grid-template-columns: 1fr;
    }
    .metal-tabs-list {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .metal-tab {
        flex-shrink: 0;
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-wrapper {
        justify-content: center;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .metal-display-card-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .metal-visual-box {
        order: -1;
    }
    .about-layout {
        grid-template-columns: 1fr;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    .container {
        padding: 0 1.25rem;
    }
    .logo-img {
        height: 48px;
    }
    .main-header.scrolled .logo-img {
        height: 44px;
    }
    .brand-name {
        font-size: 0.95rem;
    }
    .brand-subtitle {
        font-size: 0.58rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-tamil-title {
        font-size: 1.1rem;
    }
    .custom-cursor, .custom-cursor-dot {
        display: none !important;
    }
    .main-nav {
        display: none; /* Controlled via mobile drawer */
    }
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Mobile Navigation Drawer Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--color-bg-dark);
        z-index: 800;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
    }
    
    .mobile-menu-overlay.open {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .mobile-nav-link {
        font-family: var(--font-display);
        font-size: 1.5rem;
        color: var(--color-red);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        transition: var(--transition-fast);
        font-weight: 700;
    }
    
    .mobile-nav-link:hover {
        color: var(--color-yellow);
        background: var(--color-red);
        padding: 5px 15px;
        border-radius: 4px;
    }
}

@media (max-width: 576px) {
    .title-english {
        font-size: 2.5rem;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .metal-display-card-wrapper {
        padding: 20px;
    }
    .title-tamil {
        font-size: 1.6rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .section-tamil-title {
        font-size: 1rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-cta-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    .accordion-header {
        padding: 15px 20px;
    }
    .accordion-body {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .gallery-item.row-2 {
        grid-row: span 1;
    }
}

/* Subpage Padding Helper */
.subpage-hero {
    padding-top: calc(var(--header-height) + 50px) !important;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}

/* Google Reviews Section */
.reviews-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, rgba(254, 222, 6, 0.02) 50%, rgba(154, 0, 10, 0.02) 100%);
    border-top: 1px solid rgba(154, 0, 10, 0.05);
    position: relative;
    overflow: hidden;
}

/* Luxury accent line at the top */
.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-red), var(--color-yellow), var(--color-red), transparent);
}

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

.review-card {
    background: #ffffff;
    border: 1px solid rgba(154, 0, 10, 0.06);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(154, 0, 10, 0.015);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

/* Elegant gold/red top line indicator */
.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-red) 0%, var(--color-yellow) 100%);
    border-radius: 16px 16px 0 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(154, 0, 10, 0.06);
    border-color: rgba(154, 0, 10, 0.15);
}

.review-card:hover::before {
    opacity: 1;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(154, 0, 10, 0.04);
    padding-bottom: 15px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: var(--font-display);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border: 2px solid #ffffff;
    outline: 1.5px solid rgba(154, 0, 10, 0.08);
    transition: var(--transition-smooth);
}

.review-card:hover .review-avatar {
    outline-color: var(--color-yellow);
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-meta h4 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
}

.review-count {
    font-size: 0.74rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

/*verified status badge*/
.review-count::after {
    content: '• Verified';
    color: #27ae60;
    font-weight: 600;
}

.review-stars {
    color: #FEDE06;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    gap: 2px;
}

.review-stars i {
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.review-text {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-style: italic;
    font-family: Georgia, serif;
    flex-grow: 1;
    position: relative;
    padding-top: 5px;
}

/* Elegant Quote Icon Backgrounds */
.review-text::before {
    content: '“';
    font-size: 3rem;
    font-family: Georgia, serif;
    color: rgba(154, 0, 10, 0.06);
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
}

/* Beautiful luxury style summary */
.reviews-summary {
    background: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(154, 0, 10, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .reviews-section {
        padding: 60px 0 80px;
    }
}

/* Branch Outlets Section */
.outlets-section {
    padding: 80px 0;
    background: var(--color-bg);
    border-top: 1px solid rgba(154, 0, 10, 0.05);
}

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

.outlet-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(154, 0, 10, 0.08);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.outlet-card:hover {
    border-color: var(--color-yellow);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(154, 0, 10, 0.06);
}

.outlet-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(154, 0, 10, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-red);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.outlet-card:hover .outlet-icon-box {
    background: var(--color-red);
    color: var(--color-yellow);
}

.outlet-name {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: var(--color-red);
}

.outlet-tamil {
    font-size: 0.9rem;
    color: var(--color-yellow);
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.outlet-address {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 25px;
    flex-grow: 1;
}

.outlet-meta {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.outlet-link {
    font-size: 0.9rem;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.outlet-link:hover {
    color: var(--color-red);
}

.outlet-link-btn {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid var(--color-red);
    color: var(--color-red);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.outlet-link-btn:hover {
    background: var(--color-red);
    color: var(--color-yellow);
    border-color: var(--color-red);
}

/* Responsive grid for outlets */
@media (max-width: 992px) {
    .outlets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .outlets-grid {
        grid-template-columns: 1fr;
    }
    .outlets-section {
        padding: 60px 0;
    }
}

