/* === 1. Variables & Global Styles === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Source+Sans+Pro:wght@300;400;700&display=swap');

:root {
    --primary-deep: #5D1A2A;        /* Rich Burgundy */
    --primary-accent: #D4AF37;      /* Classic Gold */
    --dark-text: #01022b;           /* Dark Charcoal for text */
    --light-bg: #f8f9fa;            /* Very Light Cool Grey */
    --light-text: #f5f5f5;          /* Warm Off-White for dark backgrounds */
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--dark-text);
    background-color: var(--light-bg);
    padding-top: 80px; /* Adjust for taller navbar */
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-deep);
    letter-spacing: 0.5px;
}

h1, h2 {
    letter-spacing: 1px;
}

.main-content {
    min-height: calc(100vh - 80px - 250px); /* Adjust for new navbar height */
}

/* Custom Button Styling */
.btn-gold {
    background-color: var(--primary-accent);
    color: var(--primary-deep);
    border: 2px solid var(--primary-accent);
    padding: 10px 30px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--primary-deep);
    color: var(--light-text);
    border-color: var(--primary-deep);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(93, 26, 42, 0.2);
}

/* === 2. Navbar (New Light Theme) === */
.navbar-custom {
    background-color: white;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee; /* A subtle, light border */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* A soft shadow to lift it off the page */
}

.navbar-custom .navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-deep);
    padding: 0;
}

.navbar-custom .navbar-brand img {
    max-height: 60px; /* Control logo height */
}

.navbar-custom .nav-link {
    color: rgba(44, 44, 44, 0.7); /* Dark grey text */
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 0 15px;
    position: relative;
    letter-spacing: 1px;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--primary-deep); /* Burgundy text on hover/active */
}

/* Underline effect for nav links */
.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--primary-accent); /* Gold accent for the underline */
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    transform: scaleX(1);
}

/* Toggler Icon color change */
.navbar-toggler {
    border-color: rgba(0,0,0,0.1);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(93, 26, 42, 0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* === 3. Hero Section - Owl Carousel === */
.hero-section-container {
    height: 75vh;
    position: relative;
    color: var(--light-text);
}

.hero-carousel .hero-slide {
    height: 75vh;
    width: 100%;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark overlay for readability */
.hero-carousel .hero-slide::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(8, 12, 140, 0.5), rgba(59, 49, 72, 0.2));


}

.hero-carousel .hero-content {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    max-width: 900px;
    padding: 0 15px;
}

.hero-carousel .hero-content h1 {
    
    color: var(--light-text);
    font-weight: 700;
}

.hero-carousel .hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

/* Owl Carousel Navigation/Dots Styling */
.hero-carousel .owl-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.hero-carousel .owl-dots .owl-dot.active span,
.hero-carousel .owl-dots .owl-dot:hover span {
    background: var(--primary-accent);
}

/* Add some animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.owl-item.active .animated-headline { animation: fadeInUp 0.8s ease 0.3s both; }
.owl-item.active .animated-subtext { animation: fadeInUp 0.8s ease 0.5s both; }
.owl-item.active .animated-button { animation: fadeInUp 0.8s ease 0.7s both; }

/* --- Additions for Owl Carousel Animations --- */
.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* --- Styling for Custom Nav Arrows --- */
.hero-carousel .owl-nav {
    /* This removes the default margin that can push the container down */
    margin: 0;
}

.hero-carousel .owl-nav button.owl-prev,
.hero-carousel .owl-nav button.owl-next,
.tri-pane-carousel .owl-nav button.owl-prev,
.tri-pane-carousel .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;

    color: var(--primary-deep) !important; 
    font-size: 1.5rem !important;
    transition: all 0.3s ease !important;
    opacity: 0.8;
}

.hero-carousel .owl-nav button.owl-prev {
    left: 30px;
}

.hero-carousel .owl-nav button.owl-next {
    right: 30px;
}

/* Hover effect */
.hero-carousel .owl-nav button.owl-prev:hover,
.hero-carousel .owl-nav button.owl-next:hover,
.tri-pane-carousel .owl-nav button.owl-prev:hover,
.tri-pane-carousel .owl-nav button.owl-next:hover {
    background: var(--primary-accent) !important;
    color: var(--primary-deep) !important;
    opacity: 1;
    transform: translateY(-50%) scale(1.1); /* The Y transform is for owl's centering */
}

/* Ensure the arrows are on top of the dots if they overlap */
.hero-carousel .owl-nav {
    z-index: 10;
}

/* === 4. General Section Styling === */
.section {
    padding: 80px 0;
}

.section-bg {
    background-color: white;
}

.section-title {
    text-align: center;
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    color: var(--primary-deep);
}

/* Decorative line under section titles */
.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 100px;
    height: 3px;
    background: var(--primary-accent);
    bottom: 0;
    left: 10%;
    transform: translateX(-50%);
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    color: #6c757d;
}

.about-section-bg {
    background: url(../../uploads/banners/page-background/home_bg.jpg) repeat bottom center / contain;
}

/* === 5. Custom Cards === */
.feature-card {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-card .card-img-top {
    height: 220px;
    object-fit: cover;
}

.feature-card .card-body {
    padding: 30px;
}

.feature-card .card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card .card-text.date {
    font-size: 0.9rem;
    color: var(--primary-accent);
    font-weight: bold;
    margin-bottom: 10px;
}

/* Generic Owl Arrow Positioning */
.hero-carousel .owl-nav button.owl-prev,
.tri-pane-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
}
.hero-carousel .owl-nav button.owl-next,
.tri-pane-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

/* === 6. Footer === */
.footer-custom {
    background: white; /* NEW: White background */
    color: #6c757d; /* Standard dark grey for text */
    font-size: 0.9rem;
    border-top: 1px solid #eee; /* Match the header's top border */
}

.footer-custom h5 {
    font-family: 'Montserrat', sans-serif; /* CORRECTED */
    color: var(--primary-deep);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

/* Decorative underline for footer headings */
.footer-custom h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-accent); /* Gold underline */
}

.footer-custom a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-custom a:hover {
    color: var(--primary-accent);
    padding-left: 5px;
}

.footer-copyright {
    background-color: #f8f9fa; /* A very light grey bar for the copyright */
    padding: 15px 0;
    font-size: 0.85rem;
    border-top: 1px solid #eee;
}
.footer-copyright a {
    font-weight: bold;
}

.footer-custom .list-inline-item a {
    font-size: 20px;
    color: #888;
}
.footer-custom .list-inline-item a:hover {
    color: var(--primary-deep);
    transform: translateY(-3px);
    display: inline-block;
}

/* ===================================================================
   STYLING FOR INDIVIDUAL PAGES
=================================================================== */

/* --- 1. General Page Header --- */
.page-header {
    padding: 120px 0;
    position: relative;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: white;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(93, 26, 42, 0.7);
}
.page-header .container {
    position: relative;
    z-index: 2;
}
.page-header .page-title {
    color: white;
    font-size: 3.5rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

/* --- 2. About Us Page --- */
.about-image-wrapper {
    position: relative;
}
.about-content h2.h3 {
    margin-bottom: 20px;
}
.about-content .lead {
    line-height: 1.8;
}
.icon-box {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    transition: all 0.3s ease-in-out;
    height: 100%;
}
.icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: var(--primary-accent);
    color: var(--primary-deep);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: all 0.3s ease-in-out;
}
.icon-box:hover .icon {
    background: var(--primary-deep);
    color: var(--primary-accent);
}

/* --- 4. News & Events Page --- */
.event-list {
    position: relative;
}
.event-item {
    display: flex;
    gap: 30px;
    padding: 25px 0;
    border-bottom: 1px solid #e9ecef;
}
.event-item:last-child {
    border-bottom: none;
}
.event-date {
    background-color: var(--primary-deep);
    color: white;
    border-radius: 8px;
    text-align: center;
    padding: 10px;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: bold;
    line-height: 1;
}
.event-date span {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    display: block;
    color: var(--primary-accent);
}
.event-details h3 {
    margin-top: 0;
    margin-bottom: 10px;
}
.event-details p {
    color: #6c757d;
}

/* --- 8. Contact Page --- */
.contact-section {
    background-color: var(--light-bg);
}
.contact-info-wrapper, .contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    height: 100%;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}
.contact-info-item .icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--primary-accent);
    color: var(--primary-deep);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-right: 20px;
}
.contact-info-item h4 {
    font-size: 1.2rem;
    margin: 0 0 5px 0;
}
.contact-info-item p {
    margin: 0;
    color: #6c757d;
}
.contact-form-wrapper .form-control {
    height: 45px;
    border-color: #ddd;
    border-radius: 4px;
}
.contact-form-wrapper textarea.form-control {
    height: auto;
}
.contact-form-wrapper .form-control:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}
.map-section {
    padding: 0;
}



/* --- 10. NEW STYLES FOR REDESIGNED ABOUT US PAGE --- */

/* Genesis Section */
.genesis-section .genesis-content h2.h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}
.genesis-image-collage {
    position: relative;
    height: 450px;
}
.genesis-image-collage .image-c1,
.genesis-image-collage .image-c2 {
    position: absolute;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    overflow: hidden;
    border: 8px solid white;
}
.genesis-image-collage .image-c1 {
    width: 70%;
    height: 70%;
    top: 0;
    left: 0;
    z-index: 1;
}
.genesis-image-collage .image-c2 {
    width: 60%;
    height: 60%;
    bottom: 0;
    right: 0;
    z-index: 2;
}
.genesis-image-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Story Timeline */
.story-timeline {
    position: relative;
    padding: 2em 0;
    margin-top: 2em;
}
.story-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 4px;
    background: #e9ecef;
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    margin-bottom: 2em;
    width: 50%;
}
.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 40px;
    text-align: right;
}
.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 40px;
}
.timeline-item .timeline-icon {
    position: absolute;
    top: 15px;
    width: 50px;
    height: 50px;
    background: var(--primary-accent);
    color: var(--primary-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1;
    border: 4px solid #e9ecef;
}
.timeline-item:nth-child(odd) .timeline-icon {
    right: -25px;
}
.timeline-item:nth-child(even) .timeline-icon {
    left: -25px;
}
.timeline-panel {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.07);
    position: relative;
}
/* Triangle arrow for panels */
.timeline-panel::after {
    content: '';
    position: absolute;
    top: 20px;
    border-style: solid;
    border-width: 10px;
}
.timeline-item:nth-child(odd) .timeline-panel::after {
    right: -20px;
    border-color: transparent transparent transparent white;
}
.timeline-item:nth-child(even) .timeline-panel::after {
    left: -20px;
    border-color: transparent white transparent transparent;
}
.timeline-title {
    color: var(--primary-deep);
    font-size: 1.4rem;
}
.timeline-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .story-timeline::before { left: 25px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 0; }
    .timeline-item:nth-child(odd), .timeline-item:nth-child(even) { left: 0; text-align: left; }
    .timeline-item .timeline-icon { left: 0; }
    .timeline-item:nth-child(odd) .timeline-panel::after, .timeline-item:nth-child(even) .timeline-panel::after {
        left: -20px;
        border-color: transparent white transparent transparent;
    }
}

/* Pillars Section */
.pillar-card {
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
}
.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(93, 26, 42, 0.1);
}
.pillar-card .pillar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 25px auto 0 auto;
    border: 4px solid var(--primary-accent);
}
.pillar-card .pillar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pillar-card .pillar-info {
    padding: 20px;
}
.pillar-card .pillar-info h4 {
    font-size: 1.3rem;
    color: var(--primary-deep);
    margin-bottom: 5px;
}
.pillar-card .pillar-info span {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: bold;
    margin-bottom: 15px;
}
.pillar-card .pillar-info p {
    font-style: italic;
    color: #777;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    color: white;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(93, 26, 42, 0.8);
}
.cta-section .container {
    position: relative;
    z-index: 2;
}
.cta-section h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 15px;
}
.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ===================================================================
   STYLING FOR PRODUCT CATEGORY FEATURES
=================================================================== */

/* --- Category Card (for categories.php) --- */
.category-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    height: 100%;
    transition: all 0.3s ease;
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(93, 26, 42, 0.1);
}
.category-card a {
    text-decoration: none;
    color: var(--dark-text);
}
.category-card .category-card-img {
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}
.category-card .category-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-card .category-card-body {
    padding: 25px;
}
.category-card .category-card-body p {
    color: #6c757d;
}
.category-card .btn-link {
    font-weight: bold;
    color: var(--primary-deep);
    text-decoration: none;
}
.category-card a:hover .btn-link {
    color: var(--primary-accent);
}

/* --- Category Carousel "Split Card" (for index.php) --- */
.categories-carousel .category-slide-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    background: var(--primary-deep); /* Base background is burgundy */
    transition: all 0.4s ease;
    display: block; /* Ensures the item behaves like a block */
}

.categories-carousel .category-slide-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(93, 26, 42, 0.2);
}

.categories-carousel .category-slide-item a {
    text-decoration: none;
}

.categories-carousel .category-slide-image {
    height: 280px; /* Fixed height for the image part */
    overflow: hidden;
}

.categories-carousel .category-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.categories-carousel .category-slide-item:hover .category-slide-image img {
    transform: scale(1.1);
}

.categories-carousel .category-slide-content {
    padding: 25px 20px;
    text-align: left;
    height: 120px; /* Fixed height for the text part */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.categories-carousel .category-slide-content h3 {
    color: var(--light-text);
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: 1.5px;
}

/* The "View Products" link that appears on hover */
.categories-carousel .category-slide-content .view-link {
    color: var(--primary-accent);
    font-weight: bold;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.categories-carousel .category-slide-item:hover .category-slide-content .view-link {
    opacity: 1;
    transform: translateY(0);
}

/* Keep the existing arrow styles for the carousel nav */
.categories-carousel .owl-nav button.owl-prev,
.categories-carousel .owl-nav button.owl-next {
    /* ... (The arrow styles from the previous step are correct and should remain) ... */
    width: 45px; height: 45px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    color: var(--primary-deep) !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease !important;
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
    position: absolute; top: 40%; /* Adjust vertical position for this new layout */
}
.categories-carousel:hover .owl-nav button.owl-prev,
.categories-carousel:hover .owl-nav button.owl-next {
    opacity: 0.9;
    transform: translateY(-50%) scale(1);
}
.categories-carousel .owl-nav button.owl-prev { left: 15px; }
.categories-carousel .owl-nav button.owl-next { right: 15px; }
.categories-carousel .owl-nav button.owl-prev:hover,
.categories-carousel .owl-nav button.owl-next:hover {
    background: var(--primary-accent) !important;
    opacity: 1;
}

/* ===================================================================
   STYLING FOR SINGLE PRODUCT CATEGORY PAGE
=================================================================== */

/* --- Category Description Box --- */
.category-description-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    border-left: 4px solid var(--primary-accent);
}

/* --- Product Table Container --- */
.product-table-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    overflow: hidden; /* To keep the rounded corners with the table */
}

.product-table-container .table-header {
    padding: 20px 25px;
    background-color: #f8f9fa; /* Light grey header */
    border-bottom: 1px solid #dee2e6;
}

.product-table-container .table-header h4 {
    margin: 0;
    color: var(--primary-deep);
}

/* --- The Product Table Itself --- */
.product-table {
    margin-bottom: 0; /* Remove default table margin */
}

.product-table thead {
    background-color: transparent !important; /* Override .table-dark */
}

.product-table thead th {
    color: #6c757d;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #dee2e6 !important;
    background: #f8f9fa; /* Match the header bg */
}

.product-table tbody tr:hover {
    background-color: var(--light-bg); /* Use our soft cream for hover */
}

.product-table td {
    vertical-align: middle;
    padding: 15px;
}

/* New Button Style for the Table */
.btn-outline-deep {
    color: var(--primary-deep);
    border-color: var(--primary-deep);
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}
.btn-outline-deep:hover {
    background-color: var(--primary-deep);
    color: white;
}