 /* ===== ROOT TOKENS ===== */
 :root {
     --green-900: #002b1d;
     --green-800: #003a27;
     --green-700: #004d3d;
     --green-600: #006b52;
     --green-400: #2d9d6e;
     --green-200: #a3d9b1;
     --green-50: #f0fdf4;
     --gold: #f5a623;
     --gold-dark: #c8861a;
     --red: #d90429;
     --white: #ffffff;
     --gray-50: #f9fafb;
     --gray-100: #f3f4f6;
     --gray-300: #d1d5db;
     --gray-500: #6b7280;
     --gray-700: #374151;
     --gray-900: #111827;
     --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
     --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
     --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
     --radius: 14px;
     --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
 }

 /* ===== GLOBAL FORM STYLES ===== */
 .form-control,
 .form-select,
 .qty-input {
     border: 1px solid var(--gray-300) !important;
     border-radius: 12px;
     padding: 10px 15px;
     background-color: #fff !important;
     transition: var(--transition);
 }

 .form-control:focus,
 .form-select:focus {
     border-color: var(--green-700) !important;
     box-shadow: 0 0 0 4px rgba(0, 77, 61, 0.05) !important;
     outline: none;
 }


 /* ===== RESET & BASE ===== */
 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Inter', sans-serif;
     color: var(--gray-900);
     background: var(--white);
     overflow-x: hidden;
 }

 .serif {
     font-family: 'Playfair Display', serif;
 }

 img {
     max-width: 100%;
 }

 /* ===== PRELOADER ===== */
 #preloader {
     position: fixed;
     inset: 0;
     background: var(--green-900);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 99999;
     transition: opacity 0.6s ease, visibility 0.6s ease;
 }

 #preloader.hide {
     opacity: 0;
     visibility: hidden;
 }

 .loader-ring {
     width: 70px;
     height: 70px;
     border: 3px solid rgba(255, 255, 255, 0.1);
     border-top-color: var(--gold);
     border-radius: 50%;
     animation: spin 0.9s linear infinite;
 }

 .loader-logo {
     position: absolute;
     font-family: 'Playfair Display', serif;
     font-size: 1rem;
     font-weight: 900;
     color: var(--white);
     letter-spacing: 2px;
     text-align: center;
     line-height: 1.2;
 }

 @keyframes spin {
     to {
         transform: rotate(360deg);
     }
 }

 /* ===== TOPBAR ===== */
 .topbar {
     background: var(--green-900);
     color: rgba(255, 255, 255, 0.85);
     padding: 9px 0;
     font-size: 0.8rem;
     font-family: 'Outfit', sans-serif;
     letter-spacing: 0.3px;
 }

 .topbar a {
     color: rgba(255, 255, 255, 0.8);
     text-decoration: none;
     transition: var(--transition);
 }

 .topbar a:hover {
     color: var(--gold);
 }

.topbar .social-icons a {
    margin-right: 14px;
    font-size: 0.78rem;
}

.topbar-info {
    gap: 32px;
}

.topbar-info-item {
    display: flex;
    align-items: center;
    position: relative;
    transition: var(--transition);
}

.topbar-info-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
}

.topbar-info-item:hover {
    color: var(--white);
}

 /* ===== NAVBAR ===== */
 .site-navbar {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border-bottom: 1px solid rgba(0, 0, 0, 0.06);
     padding: 0;
     transition: var(--transition);
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 .site-navbar.scrolled {
     background: rgba(255, 255, 255, 0.98);
     box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
 }

 .navbar-inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 14px 0;
 }

 .navbar-brand-link {
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .navbar-brand-link img {
     height: 48px;
     width: auto;
 }

 .brand-text {
     font-family: 'Playfair Display', serif;
     font-size: 1.35rem;
     font-weight: 700;
     color: var(--green-700);
     line-height: 1.1;
 }

 .brand-text span {
     display: block;
     font-size: 0.6rem;
     font-family: 'Inter', sans-serif;
     font-weight: 500;
     color: var(--gray-500);
     letter-spacing: 2px;
     text-transform: uppercase;
 }

 .nav-links {
     display: flex;
     align-items: center;
     gap: 6px;
     list-style: none;
 }

 .nav-links .nav-link {
     font-family: 'Outfit', sans-serif;
     font-size: 0.85rem;
     font-weight: 600;
     color: var(--gray-700) !important;
     padding: 8px 16px !important;
     border-radius: 8px;
     text-transform: uppercase;
     letter-spacing: 0.8px;
     transition: var(--transition);
     position: relative;
 }

 .nav-links .nav-link::after {
     content: '';
     position: absolute;
     bottom: 4px;
     left: 50%;
     right: 50%;
     height: 2px;
     background: var(--gold);
     border-radius: 2px;
     transition: var(--transition);
 }

 .nav-links .nav-link:hover::after,
 .nav-links .nav-link.active::after {
     left: 16px;
     right: 16px;
 }

 .nav-links .nav-link:hover,
 .nav-links .nav-link.active {
     color: var(--green-700) !important;
     background: var(--green-50);
 }

 /* Dropdown */
 .nav-links .dropdown-menu {
     border: none;
     border-radius: 12px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
     padding: 10px;
     margin-top: 8px;
     min-width: 200px;
     animation: dropIn 0.2s ease;
 }

 @keyframes dropIn {
     from {
         opacity: 0;
         transform: translateY(-8px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .dropdown-item {
     font-family: 'Outfit', sans-serif;
     font-size: 0.85rem;
     font-weight: 500;
     color: var(--gray-700);
     padding: 9px 14px;
     border-radius: 8px;
     transition: var(--transition);
 }

 .dropdown-item:hover {
     background: var(--green-50);
     color: var(--green-700);
 }

 .btn-contact-nav {
     background: var(--green-700);
     color: #fff !important;
     padding: 9px 22px !important;
     border-radius: 50px !important;
 }

 .btn-contact-nav::after {
     display: none !important;
 }

 .btn-contact-nav:hover {
     background: var(--green-600) !important;
     color: #fff !important;
 }

 /* Hamburger */
 .navbar-toggler-custom {
     border: none;
     background: none;
     cursor: pointer;
     display: none;
     flex-direction: column;
     gap: 5px;
     padding: 4px;
 }

 .navbar-toggler-custom span {
     display: block;
     width: 24px;
     height: 2px;
     background: var(--green-700);
     border-radius: 2px;
     transition: var(--transition);
 }

 /* ===== GLOBAL BUTTONS ===== */
 .btn-primary-brand {
     background: linear-gradient(135deg, var(--green-700), var(--green-600));
     color: #fff;
     border: none;
     padding: 13px 32px;
     border-radius: 50px;
     font-family: 'Outfit', sans-serif;
     font-size: 0.9rem;
     font-weight: 600;
     letter-spacing: 0.5px;
     transition: var(--transition);
     cursor: pointer;
 }

 .btn-primary-brand:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 24px rgba(0, 77, 61, 0.3);
     color: #fff;
 }

 .btn-gold-brand {
     background: linear-gradient(135deg, var(--gold), var(--gold-dark));
     color: #fff;
     border: none;
     padding: 13px 32px;
     border-radius: 50px;
     font-family: 'Outfit', sans-serif;
     font-size: 0.9rem;
     font-weight: 600;
     letter-spacing: 0.5px;
     transition: var(--transition);
     cursor: pointer;
     text-decoration: none;
     display: inline-block;
 }

 .btn-gold-brand:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
     color: #fff;
 }

 .btn-outline-brand {
     background: transparent;
     color: var(--green-700);
     border: 2px solid var(--green-700);
     padding: 11px 30px;
     border-radius: 50px;
     font-family: 'Outfit', sans-serif;
     font-size: 0.9rem;
     font-weight: 600;
     letter-spacing: 0.5px;
     transition: var(--transition);
     cursor: pointer;
     text-decoration: none;
     display: inline-block;
 }

 .btn-outline-brand:hover {
     background: var(--green-700);
     color: #fff;
     transform: translateY(-2px);
 }

 /* ===== SECTION LABELS ===== */
 .section-eyebrow {
     display: inline-block;
     font-family: 'Outfit', sans-serif;
     font-size: 0.75rem;
     font-weight: 700;
     letter-spacing: 3px;
     text-transform: uppercase;
     color: var(--gold);
     margin-bottom: 12px;
 }

 .section-title {
     font-family: 'Playfair Display', serif;
     font-size: clamp(2rem, 4vw, 2.8rem);
     font-weight: 700;
     color: var(--green-900);
     line-height: 1.2;
 }

 .section-title span {
     color: var(--gold);
 }

 .section-subtitle {
     font-size: 1rem;
     color: var(--gray-500);
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.8;
 }

 /* ===== FOOTER ===== */
 .site-footer {
     background: var(--green-900);
     color: rgba(255, 255, 255, 0.7);
     padding-top: 80px;
 }

 .footer-brand .brand-name {
     font-family: 'Playfair Display', serif;
     font-size: 1.6rem;
     font-weight: 700;
     color: #fff;
     margin-bottom: 8px;
 }

 .footer-brand .tagline {
     font-size: 0.85rem;
     color: var(--gold);
     letter-spacing: 1px;
     text-transform: uppercase;
     margin-bottom: 16px;
 }

 .footer-brand p {
     font-size: 0.9rem;
     line-height: 1.8;
     max-width: 280px;
 }

 .footer-social {
     display: flex;
     gap: 12px;
     margin-top: 24px;
 }

 .footer-social a {
     width: 38px;
     height: 38px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.08);
     display: flex;
     align-items: center;
     justify-content: center;
     color: rgba(255, 255, 255, 0.7);
     font-size: 0.85rem;
     transition: var(--transition);
     text-decoration: none;
 }

 .footer-social a:hover {
     background: var(--gold);
     color: #fff;
     transform: translateY(-3px);
 }

 .footer-heading {
     font-family: 'Outfit', sans-serif;
     font-size: 0.78rem;
     font-weight: 700;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: var(--gold);
     margin-bottom: 20px;
 }

 .footer-links {
     list-style: none;
     padding: 0;
 }

 .footer-links li {
     margin-bottom: 10px;
 }

 .footer-links li a {
     color: rgba(255, 255, 255, 0.65);
     text-decoration: none;
     font-size: 0.9rem;
     transition: var(--transition);
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .footer-links li a:hover {
     color: var(--gold);
     padding-left: 4px;
 }

 .footer-contact-item {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     margin-bottom: 14px;
     font-size: 0.88rem;
 }

 .footer-contact-item .icon {
     width: 32px;
     height: 32px;
     border-radius: 8px;
     background: rgba(255, 255, 255, 0.08);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--gold);
     font-size: 0.8rem;
     flex-shrink: 0;
     margin-top: 2px;
 }

 .footer-divider {
     border-color: rgba(255, 255, 255, 0.08);
     margin: 40px 0 0;
 }

 .footer-bottom {
     padding: 20px 0;
     font-size: 0.82rem;
     color: rgba(255, 255, 255, 0.4);
 }

 /* ===== UTILITIES ===== */
 .text-gold {
     color: var(--gold) !important;
 }

 .bg-green-900 {
     background: var(--green-900) !important;
 }

 .bg-green-50 {
     background: var(--green-50) !important;
 }

 /* ===== RESPONSIVE ===== */
 @media (max-width: 991px) {
     .navbar-toggler-custom {
         display: flex;
     }

     .nav-collapse {
         display: none;
         width: 100%;
         background: #fff;
         border-top: 1px solid var(--gray-100);
         padding: 12px 0;
     }

     .nav-collapse.open {
         display: block;
     }

     .nav-links {
         flex-direction: column;
         align-items: stretch;
         gap: 2px;
     }

     .nav-links .nav-link {
         border-radius: 8px;
     }

     .nav-links .dropdown-menu {
         position: static !important;
         box-shadow: none;
         transform: none !important;
     }

     .navbar-inner {
         flex-wrap: wrap;
     }
 }


 .detail-header {
     background: linear-gradient(135deg, var(--green-900), var(--green-700));
     padding: 60px 0 50px;
 }

 .detail-header .breadcrumb-item a {
     color: var(--gold);
     text-decoration: none;
     font-size: 0.85rem;
 }

 .detail-header .breadcrumb-item.active {
     color: rgba(255, 255, 255, 0.7);
     font-size: 0.85rem;
 }

 .detail-header .breadcrumb-item+.breadcrumb-item::before {
     color: rgba(255, 255, 255, 0.3);
 }

 .detail-header h1 {
     font-family: 'Playfair Display', serif;
     color: #fff;
     font-size: clamp(1.8rem, 4vw, 3rem);
     font-weight: 800;
     margin-top: 14px;
 }

 .detail-header .category-badge {
     display: inline-block;
     background: var(--gold);
     color: #fff;
     padding: 5px 16px;
     border-radius: 50px;
     font-size: 0.75rem;
     font-weight: 700;
     letter-spacing: 1.5px;
     text-transform: uppercase;
 }

 /* ===== PRODUCT DETAIL BODY ===== */
 .detail-section {
     padding: 70px 0;
     background: #fff;
 }

 /* Image Panel */
 .product-img-panel {
     background: var(--green-50);
     border-radius: 20px;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
     min-height: 440px;
     padding: 40px;
     position: relative;
 }

 .product-img-panel img {
     max-height: 380px;
     width: 100%;
     object-fit: contain;
     transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .product-img-panel:hover img {
     transform: scale(1.04);
 }

 /* Info Panel */
 .product-info-panel {
     padding-left: 20px;
 }

 .product-category-tag {
     display: inline-block;
     font-size: 0.72rem;
     font-weight: 700;
     letter-spacing: 2.5px;
     text-transform: uppercase;
     color: var(--gold);
     margin-bottom: 14px;
 }

 .product-info-panel h1 {
     font-family: 'Playfair Display', serif;
     font-size: clamp(1.8rem, 3vw, 2.4rem);
     font-weight: 800;
     color: var(--green-900);
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .product-divider {
     border: none;
     border-top: 1px solid var(--gray-100);
     margin: 24px 0;
 }

 /* Details table */
 .detail-table {
     width: 100%;
 }

 .detail-table tr td {
     padding: 8px 0;
     vertical-align: top;
 }

 .detail-table tr td:first-child {
     font-size: 0.82rem;
     font-weight: 700;
     letter-spacing: 0.5px;
     text-transform: uppercase;
     color: var(--gray-500);
     width: 110px;
     padding-right: 12px;
 }

 .detail-table tr td:last-child {
     color: var(--gray-700);
     font-size: 0.9rem;
 }

 /* Features */
 .product-features {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     margin: 20px 0;
 }

 .product-feature-tag {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     padding: 7px 14px;
     border-radius: 50px;
     background: var(--green-50);
     color: var(--green-700);
     font-size: 0.78rem;
     font-weight: 600;
 }

 .product-feature-tag i {
     color: var(--gold);
 }

 /* Action buttons */
 .product-actions {
     display: flex;
     gap: 15px;
     align-items: center;
     margin-top: 35px;
 }

 .btn-add-to-cart {
     background: linear-gradient(135deg, #d4af37 0%, #f1c40f 100%);
     color: #004d3d;
     border: none;
     padding: 16px 40px;
     border-radius: 12px;
     font-family: 'Outfit', sans-serif;
     font-size: 1.1rem;
     font-weight: 800;
     letter-spacing: 1px;
     text-transform: uppercase;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
     flex: 1;
     box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
     cursor: pointer;
     position: relative;
     overflow: hidden;
 }

 .btn-add-to-cart::before {
     content: '';
     position: absolute;
     top: 0; left: -100%;
     width: 100%; height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
     transition: 0.5s;
 }

 .btn-add-to-cart:hover {
     transform: translateY(-5px) scale(1.02);
     box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
     color: #000;
 }

 .btn-add-to-cart:hover::before {
     left: 100%;
 }

 .btn-add-to-cart i {
     font-size: 1.2rem;
     transition: transform 0.3s;
 }
 
 .btn-add-to-cart:hover i {
     transform: rotate(-15deg) scale(1.2);
 }


 /* Quantity Selector */
 .qty-selector {
     display: flex;
     align-items: center;
     background: var(--gray-50);
     border: 2px solid var(--gray-100);
     border-radius: 14px;
     padding: 4px;
     width: fit-content;
     transition: all 0.3s;
 }


 .qty-btn {
     width: 44px;
     height: 44px;
     border-radius: 10px;
     border: none;
     background: #fff;
     color: var(--green-700);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.9rem;
     transition: all 0.2s;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
     cursor: pointer;
 }

 .qty-btn:hover {
     background: var(--green-700);
     color: #fff;
     transform: translateY(-2px);
 }

 .qty-input {
     width: 65px;
     border: none;
     background: transparent;
     font-family: 'Outfit', sans-serif;
     font-size: 1.2rem;
     font-weight: 800;
     color: var(--green-900);
     text-align: center;
 }

 .qty-input:focus {
     outline: none;
 }

 /* Chrome, Safari, Edge, Opera */
 .qty-input::-webkit-outer-spin-button,
 .qty-input::-webkit-inner-spin-button {
     -webkit-appearance: none;
     margin: 0;
 }

 /* Firefox */
 .qty-input[type=number] {
     -moz-appearance: textfield;
 }

 /* Share Icons */
 .share-row {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-top: 20px;
     flex-wrap: wrap;
 }

 .share-row span {
     font-size: 0.78rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: var(--gray-500);
 }

 .share-icon {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     background: var(--gray-100);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--gray-700);
     font-size: 0.85rem;
     text-decoration: none;
     transition: all 0.2s;
 }

 .share-icon:hover {
     background: var(--green-700);
     color: #fff;
     transform: translateY(-2px);
 }

 /* ===== RELATED ===== */
 .related-section {
     padding: 80px 0;
     background: var(--gray-50);
 }

 .related-section h2 {
     font-family: 'Playfair Display', serif;
     font-size: 2rem;
     color: var(--green-900);
 }

 .related-section h2 span {
     color: var(--gold);
 }

 /* Description box */
 .desc-box {
     background: var(--green-50);
     border-left: 4px solid var(--green-700);
     border-radius: 0 12px 12px 0;
     padding: 20px 24px;
     margin-bottom: 24px;
 }

 .desc-box p {
     color: var(--gray-700);
     font-size: 0.92rem;
     line-height: 1.8;
     margin: 0;
 }

 /* Status badge */
 .status-badge {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     padding: 6px 14px;
     border-radius: 50px;
     font-size: 0.78rem;
     font-weight: 700;
 }

 .status-badge.in-stock {
     background: #dcfce7;
     color: #166534;
 }

 .status-badge.out-stock {
     background: #fee2e2;
     color: #991b1b;
 }

 .status-badge::before {
     content: '';
     width: 7px;
     height: 7px;
     border-radius: 50%;
     background: currentColor;
 }


/* ===== PRODUCT CARD ===== */
.ruma-product-card {
    background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    height: 100%; display: flex; flex-direction: column;
    border: 1px solid rgba(0,0,0,0.04);
}
.ruma-product-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(0,77,61,0.14); border-color: rgba(0,77,61,0.1); }
.card-img-link { display: block; text-decoration: none; }
.card-img-wrap { position: relative; overflow: hidden; background: #f8fdf9; height: 220px; display: flex; align-items: center; justify-content: center; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.ruma-product-card:hover .card-img-wrap img { transform: scale(1.06); }
.card-overlay { position: absolute; inset: 0; background: rgba(0,77,61,0.72); display: flex; align-items: center; justify-content: center; opacity: 0; transition: all 0.35s ease; }
.ruma-product-card:hover .card-overlay { opacity: 1; }
.view-btn { color: #fff; font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.5px; padding: 10px 22px; border: 2px solid rgba(255,255,255,0.5); border-radius: 50px; transform: translateY(8px); transition: all 0.35s ease; }
.ruma-product-card:hover .view-btn { transform: translateY(0); }
.card-content { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.card-category { font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.card-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--green-900); text-decoration: none; line-height: 1.35; margin-bottom: 8px; display: block; transition: color 0.2s; }
.card-title:hover { color: var(--green-600); }
.card-price { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--green-700); }
.card-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.meta-item { font-size: 0.72rem; color: var(--gray-500); font-weight: 500; display: flex; align-items: center; gap: 4px; }
.meta-item i { color: var(--green-600); font-size: 0.65rem; }
.price-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: -2px; }
.btn-add-cart { background: var(--green-700); color: #fff; border: none; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; cursor: pointer; box-shadow: 0 4px 12px rgba(0,77,61,0.2); }
.btn-add-cart:hover { background: var(--gold); transform: scale(1.1) rotate(90deg); }
.btn-add-cart i { font-size: 0.9rem; }

   .cart-header {

        background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
        padding: 60px 0;
        text-align: center;
        color: #fff;
    }
    .cart-header h1 { font-family: 'Playfair Display', serif; font-weight: 700; }
    
    .cart-section { padding: 80px 0; background: var(--gray-50); }
    
    .cart-table-card {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border: none;
    }
    .table thead { background: var(--green-50); }
    .table thead th {
        font-family: 'Outfit', sans-serif;
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 1px;
        color: var(--green-700);
        padding: 20px;
        border: none;
    }
    .table tbody td { padding: 20px; vertical-align: middle; border-color: var(--gray-100); }
    
    .product-info { display: flex; align-items: center; gap: 15px; }
    .product-img { width: 70px; height: 70px; border-radius: 12px; object-fit: cover; background: var(--gray-50); }
    .product-name { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--green-900); text-decoration: none; }
    
    .qty-input-wrap {
        display: flex;
        align-items: center;
        background: var(--gray-100);
        border-radius: 10px;
        width: fit-content;
        padding: 5px;
    }
    .qty-btn {
        width: 30px; height: 30px; border-radius: 8px;
        background: #fff; border: none; display: flex;
        align-items: center; justify-content: center;
        color: var(--green-700); cursor: pointer; transition: all 0.2s;
    }
    .qty-btn:hover { background: var(--green-700); color: #fff; }
    .qty-input {
        width: 40px; border: none; background: transparent;
        text-align: center; font-weight: 700; font-family: 'Outfit', sans-serif;
    }
    
    .remove-btn { color: var(--red); cursor: pointer; transition: all 0.2s; background: none; border: none; }
    .remove-btn:hover { transform: scale(1.2); }
    
    .cart-summary-card {
        background: #fff;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        position: sticky; top: 100px;
    }
    .summary-title { font-family: 'Playfair Display', serif; font-weight: 700; margin-bottom: 25px; color: var(--green-900); }
    .summary-item { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 0.95rem; }
    .summary-total { border-top: 1px solid var(--gray-100); padding-top: 15px; margin-top: 15px; font-weight: 800; font-size: 1.2rem; color: var(--green-700); }
    
    .empty-cart { text-align: center; padding: 100px 20px; }
    .empty-cart i { font-size: 4rem; color: var(--gray-200); margin-bottom: 20px; }
/* ===== GLOBAL RESPONSIVE REFINEMENTS ===== */
@media (max-width: 767px) {
    .topbar {
        display: none !important; /* Force hide topbar even if layout changes */
    }
    
    .btn-primary-brand, .btn-gold-brand, .btn-outline-brand {
        padding: 11px 24px;
        font-size: 0.85rem;
    }
    
    .navbar-inner {
        padding: 10px 0;
    }
    
    .navbar-brand-link img {
        height: 38px;
    }
    
    .nav-links .nav-link {
        padding: 12px 20px !important;
        font-size: 0.9rem;
        border-radius: 0;
        border-bottom: 1px solid var(--gray-50);
    }
    
    .nav-links .nav-link::after {
        display: none;
    }
    
    .site-footer {
        padding-top: 60px;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto 20px;
    }
    
    .footer-social {
        justify-content: center;
        margin-bottom: 40px;
    }
    
    .footer-contact-item {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .brand-text {
        font-size: 1.1rem;
    }
}

/* ===== FINAL RESPONSIVE OVERRIDES ===== */
@media (max-width: 991px) {
    .navbar-inner { flex-wrap: nowrap !important; }
    .nav-collapse { max-height: 70vh !important; overflow-y: auto !important; }
    .nav-links .nav-link { border-radius: 0 !important; padding: 12px 20px !important; border-bottom: 1px solid var(--gray-50); }
}

@media (max-width: 767px) {
    .categories-section, .products-section, .why-section, .messages-section, .cta-section, .legacy-section { padding: 50px 0 !important; }
    .section-title { font-size: 1.7rem !important; }
    .hero-slider { height: 70vh !important; min-height: 400px !important; }
    .slide-content { padding-left: 20px; padding-right: 20px; }
}

/* ===== SECTION PADDING ===== */
.section-padding { padding: 100px 0; }
@media (max-width: 991px) { .section-padding { padding: 60px 0; } }
@media (max-width: 767px) { .section-padding { padding: 50px 0; } }

/* ===== HORIZONTAL OVERFLOW FIX ===== */
html, body { overflow-x: hidden; }
.slide-title { word-wrap: break-word; overflow-wrap: break-word; }
.navbar-brand-link img { max-width: 180px !important; height: auto !important; }
@media (max-width: 575px) { .navbar-brand-link img { max-width: 140px !important; } }

/* ===== MOBILE LOGO REFINEMENT ===== */
@media (max-width: 991px) {
    .navbar-brand-link { gap: 10px !important; }
    .brand-icon { width: 32px !important; height: 32px !important; font-size: 1rem !important; border-radius: 8px !important; }
    .brand-text { font-size: 1.2rem !important; }
    .brand-text span { font-size: 0.55rem !important; letter-spacing: 1.5px !important; }
    .navbar-brand-link img { height: 32px !important; width: auto !important; }
}

/* ===== BRAND LOGO REFINEMENT ===== */
.brand-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; color: var(--green-900); line-height: 1; }
.brand-text span { font-family: 'Outfit', sans-serif; font-size: 0.6rem; font-weight: 700; color: #f5a623; letter-spacing: 3.5px; text-transform: uppercase; margin-top: 2px; }
.navbar-brand-link { transition: transform 0.3s ease; }
.navbar-brand-link:hover { transform: translateY(-1px); }


/* ===== MASTER UI REFINEMENT ===== */
/* Fluid Container Padding — single source of truth */
.container { padding-left: clamp(15px, 3vw, 30px) !important; padding-right: clamp(15px, 3vw, 30px) !important; }

/* Card Uniformity */
.ruma-product-card, .category-card, .stat-card, .why-card, .msg-card, .leadership-card, .concern-card {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ruma-product-card:hover, .category-card:hover, .stat-card:hover, .why-card:hover, .msg-card:hover, .leadership-card:hover, .concern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 77, 61, 0.12);
}

/* Tablet Specific Refinements (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-slider { height: 60vh; }
    .section-padding { padding: 80px 0; }
}

/* Smooth Button Transitions */
.btn-primary-brand, .btn-gold-brand, .btn-outline-brand, .btn-white-brand {
    border-radius: 50px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

/* Force Image Integrity */
img { max-width: 100%; height: auto; object-fit: cover; }
.cat-img-wrap img, .card-img-wrap img { object-fit: contain !important; }


/* ===== DESKTOP LOGO & HEADER REFINEMENT ===== */
.navbar-brand-link img { height: 65px !important; width: auto !important; }
.navbar-inner { padding: 8px 0 !important; }

/* Standardized Section Container Spacing */
section { position: relative; }
.section-eyebrow { margin-bottom: 12px !important; }
.section-title { margin-bottom: 20px !important; }
.section-subtitle { margin-bottom: 45px !important; max-width: 700px; margin-left: auto; margin-right: auto; }

/* Category Card Image Refinement */
.cat-img-wrap { height: 200px; }
.cat-img-wrap img { padding: 15px; object-fit: contain !important; }
@media (max-width: 575px) { .cat-img-wrap { height: 130px; } }

/* Product Card Image — mobile col-6 */
@media (max-width: 575px) { .card-img-wrap { height: 160px !important; } }

/* Shop Filter Sidebar — mobile toggle */
.filter-sidebar-mobile-hidden { display: none; }
@media (min-width: 992px) { .filter-sidebar-mobile-hidden { display: block !important; } }

/* Featured Products Spacing */
.products-section .text-center { margin-bottom: 40px; }
.ruma-product-card { margin-top: 0; }

