/* --- Styles from pages/about-us.html --- */
/* ABOUT US CUSTOM PAGE STYLING */
        .about-hero-section {
            background-color: #0b3718;
            color: #ffffff;
            padding: 60px 40px;
        }

        .about-hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-hero-img-box img {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
            display: block;
        }

        .about-hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 38px;
            color: #ffffff;
            margin: 0 0 20px 0;
            font-weight: 700;
        }

        .about-hero-content p {
            font-size: 16px;
            line-height: 1.7;
            color: #e2e8f0;
            margin-bottom: 28px;
        }

        .about-hero-btn {
            display: inline-block;
            padding: 12px 28px;
            border: 1.5px solid #ffffff;
            color: #ffffff;
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            border-radius: 4px;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .about-hero-btn:hover {
            background: #ffffff;
            color: #0b3718;
        }

        /* LEADERSHIP QUOTES */
        .quote-section {
            padding: 80px 20px;
            background: #fafaf9;
            border-bottom: 1px solid #f1f5f9;
        }

        .quote-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 60px;
            align-items: center;
        }

        .quote-avatar-box {
            text-align: center;
        }

        .quote-avatar {
            width: 260px;
            height: 260px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
            border: 4px solid #ffffff;
        }

        .quote-content {
            position: relative;
        }

        .quote-mark-top {
            font-size: 90px;
            font-family: 'Playfair Display', serif;
            color: #cbd5e1;
            line-height: 0.5;
            margin-bottom: 10px;
            opacity: 0.5;
        }

        .quote-header-title {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .quote-name {
            font-size: 22px;
            font-weight: 700;
            color: #0f172a;
        }

        .quote-designation {
            font-size: 18px;
            font-weight: 600;
            color: #2563eb;
        }

        .quote-divider {
            height: 2px;
            background: #334155;
            flex-grow: 1;
            max-width: 200px;
        }

        .quote-text {
            font-size: 18px;
            line-height: 1.8;
            color: #1e293b;
            font-style: italic;
            font-weight: 600;

        }

        .quote-mark-bottom {
            font-size: 90px;
            font-family: 'Playfair Display', serif;
            color: #0284c7;
            text-align: right;
            line-height: 0.2;
            margin-top: 10px;
        }

        /* COMPANIES & STATS SECTION */
        .group-companies-section {
            padding: 80px 20px;
            background: #ffffff;
        }

        .companies-grid {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .companies-title {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            color: #0f7139;
            margin-bottom: 20px;
        }

        .companies-text {
            font-size: 15px;
            line-height: 1.7;
            color: #64748b;
            margin-bottom: 20px;
        }

        .stats-cards-row {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .stat-card {
            background: #fafaf9;
            border: 1px solid #f1f5f9;
            border-radius: 12px;
            padding: 24px 20px;
            text-align: center;
            flex: 1;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: #0f7139;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 11px;
            font-weight: 700;
            color: #64748b;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .companies-img-box img {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        /* LEADERS SECTION */
        .leaders-section {
            padding: 80px 20px;
            background: #fafaf9;
            text-align: center;
        }

        .leaders-heading {
            font-family: 'Playfair Display', serif;
            font-size: 34px;
            color: #0f7139;
            margin-bottom: 12px;
        }

        .leaders-sub {
            font-size: 15px;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto 50px auto;
            line-height: 1.6;
        }

        .leaders-cards-grid {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .leader-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 40px 30px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease;
        }

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

        .leader-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 3px solid #e2e8f0;
        }

        .leader-name {
            font-size: 18px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 6px;
        }

        .leader-role {
            font-size: 13px;
            color: #64748b;
            font-weight: 500;
        }

        @media (max-width: 992px) {
            .about-hero-container,
            .quote-container,
            .companies-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .leaders-cards-grid {
                grid-template-columns: 1fr;
            }
        }

/* --- Styles from pages/blog.html --- */
.blog-page-hero {
            background: linear-gradient(135deg, #0b3718 0%, #0f7139 100%);
            color: #ffffff;
            padding: 60px 20px;
            text-align: center;
        }

        .blog-page-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 38px;
            margin-bottom: 12px;
        }

        .blog-page-hero p {
            font-size: 16px;
            color: #e2e8f0;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .blog-container {
            max-width: 1280px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 30px;
        }

        .blog-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.1);
        }

        .blog-card-img-wrap {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .blog-card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-card-img-wrap img {
            transform: scale(1.05);
        }

        .blog-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            background: #0f7139;
            color: #ffffff;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .blog-card-content {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .blog-date {
            font-size: 12px;
            color: #64748b;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .blog-title {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .blog-excerpt {
            font-size: 14px;
            color: #475569;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .blog-read-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #0f7139;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .blog-read-btn:hover {
            color: #0b3718;
            text-decoration: underline;
        }

/* --- Styles from pages/profile.html --- */
.profile-page-section {
            background-color: #f8fafc;
            min-height: 70vh;
            padding: 40px 20px 80px;
        }

        .profile-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .profile-header-card {
            background: linear-gradient(135deg, #0f7139 0%, #0b3718 100%);
            color: #ffffff;
            border-radius: 16px;
            padding: 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 10px 25px rgba(15, 113, 57, 0.15);
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .user-identity-wrap {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .user-avatar-circle {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: #ffffff;
            color: #0f7139;
            font-size: 28px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
        }

        .user-info-text h1 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 28px;
            margin: 0 0 6px 0;
            color: #ffffff;
            font-weight: 600;
        }

        .user-info-text p {
            margin: 0;
            color: #d1fae5;
            font-size: 14px;
        }

        .profile-header-actions {
            display: flex;
            gap: 12px;
        }

        .logout-btn-header {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logout-btn-header:hover {
            background: #ffffff;
            color: #b91c1c;
            border-color: #ffffff;
        }

        .profile-grid-layout {
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 28px;
        }

        @media (max-width: 768px) {
            .profile-grid-layout {
                grid-template-columns: 1fr;
            }
        }

        .profile-sidebar-nav {
            background: #ffffff;
            border-radius: 12px;
            padding: 16px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
            border: 1px solid #e2e8f0;
            display: flex;
            flex-direction: column;
            gap: 6px;
            height: fit-content;
        }

        .nav-tab-btn {
            background: none;
            border: none;
            padding: 12px 16px;
            border-radius: 8px;
            text-align: left;
            font-size: 15px;
            font-weight: 600;
            color: #475569;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-tab-btn:hover {
            background: #f1f5f9;
            color: #0f7139;
        }

        .nav-tab-btn.active {
            background: #e8f5e9;
            color: #0f7139;
        }

        .profile-content-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 32px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
            border: 1px solid #e2e8f0;
        }

        .tab-panel {
            display: none;
        }

        .tab-panel.active {
            display: block;
        }

        .panel-heading {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 24px;
            color: #0f7139;
            margin-top: 0;
            margin-bottom: 24px;
            border-bottom: 1px solid #f1f5f9;
            padding-bottom: 14px;
        }

        .form-grid-2col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        @media (max-width: 600px) {
            .form-grid-2col {
                grid-template-columns: 1fr;
            }
        }

        .profile-form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .profile-form-group label {
            font-size: 13px;
            font-weight: 600;
            color: #334155;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .profile-input {
            width: 100%;
            height: 48px;
            padding: 0 16px;
            border: 1.5px solid #cbd5e1;
            border-radius: 6px;
            font-size: 15px;
            color: #1e293b;
            background: #ffffff;
            outline: none;
            transition: all 0.2s ease;
            box-sizing: border-box;
        }

        .profile-input:focus {
            border-color: #0f7139;
            box-shadow: 0 0 0 3px rgba(15, 113, 57, 0.12);
        }

        .save-profile-btn {
            background-color: #0f7139;
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            padding: 12px 32px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: background-color 0.2s ease, transform 0.1s ease;
        }

        .save-profile-btn:hover {
            background-color: #0b3718;
            transform: translateY(-1px);
        }

        .orders-empty-state {
            text-align: center;
            padding: 48px 20px;
            color: #64748b;
        }

        .orders-empty-state svg {
            color: #0f7139;
            margin-bottom: 16px;
        }

        .shop-now-btn {
            display: inline-block;
            background-color: #0f7139;
            color: #ffffff;
            padding: 12px 28px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 16px;
            transition: background-color 0.2s ease;
        }

        .shop-now-btn:hover {
            background-color: #0b3718;
        }

        .alert-success-banner {
            display: none;
            background-color: #eaf6ee;
            color: #0f7139;
            border: 1px solid #278d43;
            border-radius: 6px;
            padding: 12px 16px;
            font-size: 14px;
            margin-bottom: 20px;
            align-items: center;
            gap: 10px;
        }

/* --- Styles from pages/track-order.html --- */
.track-page-wrapper {
            background: #fafaf9;
            padding: 60px 20px 90px 20px;
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .track-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 50px 40px;
            max-width: 580px;
            width: 100%;
            border: 1px solid #e2e8f0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            text-align: center;
        }

        .track-icon-box {
            width: 70px;
            height: 70px;
            background: #f0fdf4;
            color: #0f7139;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 20px;
        }

        .track-card h1 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            color: #0f172a;
            margin-bottom: 12px;
        }

        .track-card p {
            font-size: 15px;
            color: #475569;
            line-height: 1.6;
            margin-bottom: 28px;
        }

        .track-card p a {
            color: #0f7139;
            font-weight: 600;
            text-decoration: underline;
        }

        .track-form-group {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 20px;
        }

        .track-input {
            width: 100%;
            padding: 14px 18px;
            border: 1.5px solid #cbd5e1;
            border-radius: 8px;
            font-size: 15px;
            outline: none;
            transition: border-color 0.2s ease;
            box-sizing: border-box;
        }

        .track-input:focus {
            border-color: #0f7139;
            box-shadow: 0 0 0 3px rgba(15, 113, 57, 0.15);
        }

        .track-submit-btn {
            width: 100%;
            background: #0f7139;
            color: #ffffff;
            font-size: 15px;
            font-weight: 700;
            padding: 15px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background 0.3s ease, transform 0.2s ease;
        }

        .track-submit-btn:hover {
            background: #0b3718;
            transform: translateY(-1px);
        }

        .track-help-text {
            font-size: 13px;
            color: #64748b;
            margin-top: 18px;
        }

        .track-help-text a {
            color: #0f7139;
            font-weight: 700;
            text-decoration: underline;
        }

        @media (max-width: 600px) {
            .track-card {
                padding: 30px 20px;
            }
            .track-card h1 {
                font-size: 26px;
            }
        }

/* --- Styles from pages/policies/privacy-policy.html --- */
.policy-page-header {
            background: linear-gradient(135deg, #0b3718 0%, #0f7139 100%);
            color: #ffffff;
            padding: 50px 20px;
            text-align: center;
        }

        .policy-page-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            margin-bottom: 8px;
        }

        .policy-page-header p {
            font-size: 14px;
            color: #e2e8f0;
        }

        .policy-container {
            max-width: 900px;
            margin: 40px auto;
            padding: 0 20px 60px 20px;
            color: #1e293b;
            line-height: 1.8;
            font-size: 15px;
        }

        .policy-content-box {
            background: #ffffff;
            border-radius: 12px;
            padding: 40px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        }

        .policy-content-box h2 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            color: #0f7139;
            margin: 28px 0 12px 0;
            padding-bottom: 6px;
            border-bottom: 2px solid #f1f5f9;
        }

        .policy-content-box h3 {
            font-size: 16px;
            font-weight: 700;
            color: #0f172a;
            margin: 20px 0 8px 0;
        }

        .policy-content-box ul {
            padding-left: 24px;
            margin-bottom: 16px;
        }

        .policy-content-box li {
            margin-bottom: 8px;
        }

        @media (max-width: 768px) {
            .policy-content-box {
                padding: 24px;
            }
            .policy-page-header h1 {
                font-size: 28px;
            }
        }

/* --- Styles from pages/policies/refund-policy.html --- */
.policy-page-header {
            background: linear-gradient(135deg, #0b3718 0%, #0f7139 100%);
            color: #ffffff;
            padding: 50px 20px;
            text-align: center;
        }

        .policy-page-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            margin-bottom: 8px;
        }

        .policy-page-header p {
            font-size: 14px;
            color: #e2e8f0;
        }

        .policy-container {
            max-width: 900px;
            margin: 40px auto;
            padding: 0 20px 60px 20px;
            color: #1e293b;
            line-height: 1.8;
            font-size: 15px;
        }

        .policy-content-box {
            background: #ffffff;
            border-radius: 12px;
            padding: 40px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        }

        .policy-content-box h2 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            color: #0f7139;
            margin: 28px 0 12px 0;
            padding-bottom: 6px;
            border-bottom: 2px solid #f1f5f9;
        }

        .policy-highlight-box {
            background: #fff7ed;
            border-left: 4px solid #ea580c;
            padding: 20px;
            border-radius: 6px;
            margin: 20px 0;
            font-weight: 500;
        }

        .policy-content-box ul {
            padding-left: 24px;
            margin-bottom: 16px;
        }

        .policy-content-box li {
            margin-bottom: 10px;
        }

        @media (max-width: 768px) {
            .policy-content-box {
                padding: 24px;
            }
            .policy-page-header h1 {
                font-size: 28px;
            }
        }

/* --- Styles from pages/policies/shipping-policy.html --- */
.policy-page-header {
            background: linear-gradient(135deg, #0b3718 0%, #0f7139 100%);
            color: #ffffff;
            padding: 50px 20px;
            text-align: center;
        }

        .policy-page-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            margin-bottom: 8px;
        }

        .policy-page-header p {
            font-size: 14px;
            color: #e2e8f0;
        }

        .policy-container {
            max-width: 900px;
            margin: 40px auto;
            padding: 0 20px 60px 20px;
            color: #1e293b;
            line-height: 1.8;
            font-size: 15px;
        }

        .policy-content-box {
            background: #ffffff;
            border-radius: 12px;
            padding: 40px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        }

        .policy-content-box h2 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            color: #0f7139;
            margin: 28px 0 12px 0;
            padding-bottom: 6px;
            border-bottom: 2px solid #f1f5f9;
        }

        .policy-highlight-box {
            background: #f0fdf4;
            border-left: 4px solid #0f7139;
            padding: 20px;
            border-radius: 6px;
            margin: 20px 0;
            font-weight: 500;
        }

        .policy-content-box ul {
            padding-left: 24px;
            margin-bottom: 16px;
        }

        .policy-content-box li {
            margin-bottom: 10px;
        }

        @media (max-width: 768px) {
            .policy-content-box {
                padding: 24px;
            }
            .policy-page-header h1 {
                font-size: 28px;
            }
        }

/* --- Styles from pages/policies/terms-of-service.html --- */
.policy-page-header {
            background: linear-gradient(135deg, #0b3718 0%, #0f7139 100%);
            color: #ffffff;
            padding: 50px 20px;
            text-align: center;
        }

        .policy-page-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            margin-bottom: 8px;
        }

        .policy-page-header p {
            font-size: 14px;
            color: #e2e8f0;
        }

        .policy-container {
            max-width: 900px;
            margin: 40px auto;
            padding: 0 20px 60px 20px;
            color: #1e293b;
            line-height: 1.8;
            font-size: 15px;
        }

        .policy-content-box {
            background: #ffffff;
            border-radius: 12px;
            padding: 40px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        }

        .policy-content-box h2 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            color: #0f7139;
            margin: 28px 0 12px 0;
            padding-bottom: 6px;
            border-bottom: 2px solid #f1f5f9;
        }

        .policy-content-box p {
            margin-bottom: 14px;
        }

        @media (max-width: 768px) {
            .policy-content-box {
                padding: 24px;
            }
            .policy-page-header h1 {
                font-size: 28px;
            }
        }

/* ==========================================================================
   ELEGANT PAGES & ABOUT US ENHANCEMENTS
   ========================================================================== */
.about-hero-section {
    background: linear-gradient(135deg, #094723 0%, #0f7139 100%) !important;
    border-radius: 20px !important;
    max-width: 1400px !important;
    margin: 20px auto !important;
    padding: 60px 48px !important;
    box-shadow: 0 10px 30px rgba(15, 113, 57, 0.15) !important;
}

.about-hero-content h1 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 40px !important;
    line-height: 1.2 !important;
}

.about-hero-btn {
    border-radius: 30px !important;
    padding: 12px 32px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
    background: #ffffff !important;
    color: #0f7139 !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15) !important;
}

.about-hero-btn:hover {
    background: #f8fafc !important;
    color: #094723 !important;
    transform: translateY(-2px) !important;
}

.quote-section {
    background: #faf9f5 !important;
}

.quote-container {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 40px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}

.quote-avatar {
    border: 4px solid #e2ebd6 !important;
}

/* Product Detail Compact Typography & Price Box Styling */
.product-detail-heading {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.3 !important;
}

.product-detail-price-box {
    background: #f8fafc !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    margin-bottom: 18px !important;
    border: 1px solid #edf2f7 !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}

.product-detail-sale-price {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #0f7139 !important;
}

.product-detail-regular-price {
    font-size: 16px !important;
    text-decoration: line-through !important;
    color: #94a3b8 !important;
    font-weight: 500 !important;
}

.product-detail-save-badge {
    font-size: 12.5px !important;
    color: #e11d48 !important;
    font-weight: 700 !important;
    background: #ffe4e6 !important;
        }

        .policy-content-box {
            background: #ffffff;
            border-radius: 12px;
            padding: 40px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        }

        .policy-content-box h2 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            color: #0f7139;
            margin: 28px 0 12px 0;
            padding-bottom: 6px;
            border-bottom: 2px solid #f1f5f9;
        }

        .policy-highlight-box {
            background: #f0fdf4;
            border-left: 4px solid #0f7139;
            padding: 20px;
            border-radius: 6px;
            margin: 20px 0;
            font-weight: 500;
        }

        .policy-content-box ul {
            padding-left: 24px;
            margin-bottom: 16px;
        }

        .policy-content-box li {
            margin-bottom: 10px;
        }

        @media (max-width: 768px) {
            .policy-content-box {
                padding: 24px;
            }
            .policy-page-header h1 {
                font-size: 28px;
            }
        }

/* --- Styles from pages/policies/terms-of-service.html --- */
.policy-page-header {
            background: linear-gradient(135deg, #0b3718 0%, #0f7139 100%);
            color: #ffffff;
            padding: 50px 20px;
            text-align: center;
        }

        .policy-page-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            margin-bottom: 8px;
        }

        .policy-page-header p {
            font-size: 14px;
            color: #e2e8f0;
        }

        .policy-container {
            max-width: 900px;
            margin: 40px auto;
            padding: 0 20px 60px 20px;
            color: #1e293b;
            line-height: 1.8;
            font-size: 15px;
        }

        .policy-content-box {
            background: #ffffff;
            border-radius: 12px;
            padding: 40px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        }

        .policy-content-box h2 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            color: #0f7139;
            margin: 28px 0 12px 0;
            padding-bottom: 6px;
            border-bottom: 2px solid #f1f5f9;
        }

        .policy-content-box p {
            margin-bottom: 14px;
        }

        @media (max-width: 768px) {
            .policy-content-box {
                padding: 24px;
            }
            .policy-page-header h1 {
                font-size: 28px;
            }
        }

/* ==========================================================================
   ELEGANT PAGES & ABOUT US ENHANCEMENTS
   ========================================================================== */
.about-hero-section {
    background: linear-gradient(135deg, #094723 0%, #0f7139 100%) !important;
    border-radius: 20px !important;
    max-width: 1400px !important;
    margin: 20px auto !important;
    padding: 60px 48px !important;
    box-shadow: 0 10px 30px rgba(15, 113, 57, 0.15) !important;
}

.about-hero-content h1 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 40px !important;
    line-height: 1.2 !important;
}

.about-hero-btn {
    border-radius: 30px !important;
    padding: 12px 32px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
    background: #ffffff !important;
    color: #0f7139 !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15) !important;
}

.about-hero-btn:hover {
    background: #f8fafc !important;
    color: #094723 !important;
    transform: translateY(-2px) !important;
}

.quote-section {
    background: #faf9f5 !important;
}

.quote-container {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 40px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}

.quote-avatar {
    border: 4px solid #e2ebd6 !important;
}

/* Product Detail Compact Typography & Price Box Styling */
.product-detail-heading {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.3 !important;
}

.product-detail-price-box {
    background: #f8fafc !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    margin-bottom: 18px !important;
    border: 1px solid #edf2f7 !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}

.product-detail-sale-price {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #0f7139 !important;
}

.product-detail-regular-price {
    font-size: 16px !important;
    text-decoration: line-through !important;
    color: #94a3b8 !important;
    font-weight: 500 !important;
}

.product-detail-save-badge {
    font-size: 12.5px !important;
    color: #e11d48 !important;
    font-weight: 700 !important;
    background: #ffe4e6 !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
}

/* ==========================================================================
@media screen and (max-width: 768px) {
    /* Main Product Canvas Box */
    .product-detail-container-box,
    .product-detail-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        padding: 10px !important;
        border-radius: 12px !important;
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
    }

    /* 1. Centered & Perfectly Sized Product Image Box */
    .product-gallery-side {
        width: 100% !important;
        display: block !important;
        margin-bottom: 2px !important;
    }

    .product-gallery-side > div:first-child {
        position: relative !important;
        padding: 10px !important;
        border-radius: 10px !important;
        background: #fafbfc !important;
        border: 1px solid #e2e8f0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 180px !important;
        max-height: 200px !important;
    }

    .product-gallery-side .card-discount-tag {
        position: absolute !important;
        top: 8px !important;
        left: 8px !important;
        background: #005d4a !important;
        color: #ffffff !important;
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 10.5px !important;
        font-weight: 800 !important;
        padding: 3px 8px !important;
        border-radius: 4px !important;
        white-space: nowrap !important;
        width: auto !important;
        max-width: max-content !important;
        min-width: fit-content !important;
        z-index: 10 !important;
        box-shadow: 0 2px 6px rgba(0, 93, 74, 0.2) !important;
        line-height: 1.2 !important;
    }

    #mainDetailProductImg {
        height: 170px !important;
        max-height: 170px !important;
        width: 100% !important;
        max-width: 170px !important;
        margin: 0 auto !important;
        object-fit: contain !important;
        display: block !important;
    }

    .product-thumbnails-carousel {
        display: flex !important;
        gap: 6px !important;
        margin-top: 6px !important;
        overflow-x: auto !important;
        padding-bottom: 2px !important;
        scrollbar-width: none !important;
    }

    .detail-thumb-item {
        width: 44px !important;
        height: 44px !important;
        border-radius: 6px !important;
        flex-shrink: 0 !important;
    }

    /* 2. Product Info Container */
    .product-info-side {
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Category Badges (SPICES / SEEDS) */
    .product-info-side > div:first-child {
        margin-bottom: 4px !important;
        gap: 4px !important;
        display: flex !important;
        align-items: center !important;
    }

    .product-info-side > div:first-child span {
        font-size: 10px !important;
        font-weight: 700 !important;
        padding: 2px 8px !important;
        border-radius: 10px !important;
    }

    /* Product Title (Compact 1-2 Lines, Clean Proportions) */
    .product-detail-heading {
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        line-height: 1.25 !important;
        color: #0f172a !important;
        margin: 2px 0 4px 0 !important;
        padding: 0 !important;
        word-break: break-word !important;
    }

    /* Compact Ratings Row & Verified Product Badge */
    .product-info-side > div:nth-of-type(2) {
        display: flex !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        margin-bottom: 6px !important;
        gap: 3px 6px !important;
    }

    #topRatingStarsVisual {
        font-size: 12px !important;
        letter-spacing: 0.5px !important;
    }

    #topRatingScoreNum {
        font-size: 11.5px !important;
    }

    #topRatingCountText {
        font-size: 10.5px !important;
    }

    .product-info-side span[style*="ecfdf5"] {
        font-size: 9.5px !important;
        padding: 2px 6px !important;
        border-radius: 6px !important;
        white-space: nowrap !important;
    }

    /* Compact Price Box */
    .product-detail-price-box {
        padding: 5px 8px !important;
        margin-bottom: 8px !important;
        gap: 6px 8px !important;
        background: #f0fdf4 !important;
        border: 1px solid #dcfce7 !important;
        border-radius: 6px !important;
        display: flex !important;
        align-items: baseline !important;
        flex-wrap: wrap !important;
    }

    .product-detail-sale-price {
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 1.1rem !important;
        color: #0c831f !important;
        font-weight: 800 !important;
    }

    .product-detail-regular-price {
        font-size: 11.5px !important;
        color: #94a3b8 !important;
    }

    .product-detail-save-badge {
        font-size: 9.5px !important;
        padding: 2px 6px !important;
        background: #dcfce7 !important;
        color: #0c831f !important;
        font-weight: 800 !important;
        border-radius: 4px !important;
        white-space: nowrap !important;
    }

    /* Side-by-Side Specs Cards (UNIT / NET WEIGHT & AVAILABILITY) */
    .product-info-side > div[style*="grid-template-columns: 1fr 1fr"] {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 6px !important;
        margin-bottom: 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .product-info-side > div[style*="grid-template-columns: 1fr 1fr"] > div {
        padding: 6px 8px !important;
        border-radius: 6px !important;
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        box-sizing: border-box !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .product-info-side > div[style*="grid-template-columns: 1fr 1fr"] strong {
        font-size: 9.5px !important;
        color: #64748b !important;
        margin-bottom: 1px !important;
        letter-spacing: 0.2px !important;
        display: block !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .product-info-side > div[style*="grid-template-columns: 1fr 1fr"] span {
        font-size: 11.5px !important;
        font-weight: 700 !important;
        display: block !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    /* Inline Single Horizontal Action Row: Quantity + ADD TO CART + BUY NOW */
    .product-info-side > div[style*="margin-bottom: 24px"] {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 5px !important;
        margin-bottom: 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Quantity Picker Box (Centered & Compact ~76px) */
    .product-info-side > div[style*="margin-bottom: 24px"] > div[style*="height: 50px"] {
        height: 36px !important;
        flex: 0 0 76px !important;
        width: 76px !important;
        min-width: 76px !important;
        border-radius: 6px !important;
        padding: 0 2px !important;
        box-sizing: border-box !important;
        justify-content: center !important;
        border: 1.5px solid #cbd5e1 !important;
    }

    .product-info-side > div[style*="margin-bottom: 24px"] > div[style*="height: 50px"] button {
        width: 22px !important;
        font-size: 15px !important;
    }

    .product-info-side > div[style*="margin-bottom: 24px"] > div[style*="height: 50px"] input {
        width: 24px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        text-align: center !important;
    }

    /* Prominent Buttons with 36px Height Inline */
    .product-info-side > div[style*="margin-bottom: 24px"] > button {
        height: 36px !important;
        min-height: 36px !important;
        max-height: 36px !important;
        font-size: 10.5px !important;
        font-weight: 800 !important;
        border-radius: 6px !important;
        padding: 0 4px !important;
        min-width: 0 !important;
        flex: 1 1 0% !important;
        white-space: nowrap !important;
        margin: 0 !important;
    }

    .product-info-side > div[style*="margin-bottom: 24px"] > button:first-of-type {
        background: #005d4a !important;
        color: #ffffff !important;
    }

    .product-info-side > div[style*="margin-bottom: 24px"] > button:last-of-type {
        background: #1e293b !important;
        color: #ffffff !important;
    }

    /* Product Description & Highlights Box */
    .product-info-side > div[style*="background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px"] {
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 8px !important;
        padding: 8px 10px !important;
        margin-bottom: 8px !important;
        box-shadow: none !important;
    }

    .product-info-side > div[style*="background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px"] h3 {
        font-size: 11.5px !important;
        font-weight: 800 !important;
        color: #005d4a !important;
        margin: 0 0 3px 0 !important;
        line-height: 1.25 !important;
    }

    .product-info-side > div[style*="background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px"] div {
        font-size: 11px !important;
        line-height: 1.35 !important;
        color: #475569 !important;
    }

    /* Single Horizontal Row: Trust Badges */
    .product-info-side > div[style*="color: #64748b; flex-wrap: wrap"] {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 4px !important;
        font-size: 9.5px !important;
        color: #475569 !important;
        background: transparent !important;
        border: none !important;
        padding: 2px 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-bottom: 60px !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
    }

    .product-info-side > div[style*="color: #64748b; flex-wrap: wrap"] span {
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    /* WhatsApp Floating Button Safety */
    .whatsapp-float-btn {
        width: 42px !important;
        height: 42px !important;
        bottom: 80px !important;
        right: 12px !important;
        z-index: 9996 !important;
    }

    /* Related Products & Collections 2-Column Mobile Grid Alignment */
    .collections-grid,
    #relatedProductsGrid,
    .related-products-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px 8px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 6px 4px 16px 4px !important;
        margin: 0 !important;
    }

    .collections-grid .product-card,
    #relatedProductsGrid .product-card,
    .related-products-grid .product-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }

    /* Cart & Checkout App Polish */
    .cart-table-wrapper,
    .cart-items-table {
        display: block !important;
        width: 100% !important;
    }

    .checkout-form-grid,
    .checkout-container {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

/* ====================================================
   ORDER SUCCESS CONFIRMATION MODAL
   ==================================================== */
.order-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-sizing: border-box;
}

.order-success-modal.show {
    opacity: 1 !important;
    visibility: visible !important;
}

.order-success-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #cbd5e1;
    box-sizing: border-box;
}

.order-success-modal.show .order-success-box {
    transform: scale(1) translateY(0);
}

.success-icon-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 16px auto;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    animation: successPop 0.4s ease;
}

@keyframes successPop {
    0% { transform: scale(0.5); }
    70% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.success-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.success-desc {
    font-size: 13.5px;
    color: #64748b;
    margin: 0 0 20px 0;
    line-height: 1.45;
}

.order-info-pill {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px 16px;
    text-align: left;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: #334155;
}

.order-info-pill div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-info-pill span {
    font-weight: 700;
    color: #0f172a;
}

.btn-continue-store {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px 24px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #ffffff !important;
    font-weight: 800;
    font-size: 14.5px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.btn-continue-store:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.5);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}