        /*
        =============================================================================
        SPICE POWDERS EXPORT PAGE - PREMIUM GROUND SPICES DESIGN
        Beautiful spice colors with export-focused professional styling
        =============================================================================
        */

        /* Enhanced Color Palette - Premium Spice Powder Colors */
        :root {
            --chili-red: #DC3545;
            --turmeric-gold: #F4C430;
            --cumin-brown: #8B4513;
            --coriander-green: #228B22;
            --paprika-orange: #FF6B35;
            --garam-masala: #D2691E;
            --mustard-yellow: #FFDB58;
            --fenugreek-amber: #DAA520;
            --cardamom-sage: #9CAF88;
            --black-pepper: #2F2F2F;
            --export-blue: #1E88E5;
            --premium-gold: #B8860B;
            --processing-silver: #C0C0C0;
            --text-color: #2F4F2F;
            --dark-gray: #2F4F2F;
        }

        /* Override header styles */
        .header {
            z-index: 1051 !important;
            position: fixed !important;
            top: 0 !important;
            background: var(--white) !important;
            box-shadow: var(--shadow-light) !important;
        }

        .product-hero {
            background: linear-gradient(135deg,
            rgba(220, 53, 69, 0.6),
            rgba(244, 196, 48, 0.5),
            rgba(139, 69, 19, 0.4)),
            url('../../images/header_spices.jpg') center/cover;
            padding: 8rem 0 3rem;
            color: white;
            position: relative;
            margin-top: 0;
            z-index: 1;
        }

        .product-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
        }

        .product-hero .container {
            position: relative;
            z-index: 2;
        }

        .product-hero h1 {
            color: white;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            font-size: 2.5rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .product-hero .lead {
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
            font-size: 1.2rem;
        }

        /* Export Statistics Banner */
        .export-stats {
            background: linear-gradient(135deg, var(--export-blue), var(--premium-gold));
            color: white;
            padding: 1.5rem 0;
            margin: 2rem 0;
            border-radius: var(--radius-large);
            box-shadow: var(--shadow-medium);
        }

        .export-stats h4 {
            color: white !important;
            margin-bottom: 1rem;
            text-align: center;
        }

        .export-stat-item {
            text-align: center;
            padding: 1rem;
        }

        .export-stat-number {
            font-size: 2rem;
            font-weight: 500;
            display: block;
            margin-bottom: 0.5rem;
        }

        .export-stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Clean Photo Gallery for Spice Powders */
        .product-gallery {
            background: var(--white);
            border-radius: var(--radius-large);
            overflow: hidden;
            box-shadow: var(--shadow-medium);
            margin-bottom: 3rem;
        }

        .main-product-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-thumbs {
            display: flex;
            gap: 10px;
            padding: 15px;
            overflow-x: auto;
            justify-content: center;
        }

        .thumb-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: var(--radius-small);
            cursor: pointer;
            border: 2px solid transparent;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .thumb-image:nth-child(1):hover,
        .thumb-image:nth-child(1).active {
            border-color: var(--chili-red);
            transform: translateY(-2px);
        }

        .thumb-image:nth-child(2):hover,
        .thumb-image:nth-child(2).active {
            border-color: var(--turmeric-gold);
            transform: translateY(-2px);
        }

        .thumb-image:nth-child(3):hover,
        .thumb-image:nth-child(3).active {
            border-color: var(--cumin-brown);
            transform: translateY(-2px);
        }

        .thumb-image:nth-child(4):hover,
        .thumb-image:nth-child(4).active {
            border-color: var(--coriander-green);
            transform: translateY(-2px);
        }

        .thumb-image:nth-child(5):hover,
        .thumb-image:nth-child(5).active {
            border-color: var(--paprika-orange);
            transform: translateY(-2px);
        }

        /* Gallery Quick Specs Styling */
        .gallery-quick-specs {
          background: linear-gradient(135deg, 
              rgba(220, 53, 69, 0.05), 
              rgba(244, 196, 48, 0.08));
          border-radius: 15px;
          padding: 1.5rem;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
          margin-bottom: 2rem;
          border: 1px solid rgba(220, 53, 69, 0.15);
        }

        .gallery-quick-specs h4 {
          color: var(--chili-red);
          font-size: 1.1rem;
          font-weight: 600;
          margin-bottom: 1rem;
          padding-bottom: 0.5rem;
          border-bottom: 2px solid var(--chili-red);
        }

        .gallery-quick-specs h4 i {
          margin-right: 8px;
          font-size: 1rem;
        }

        .quick-info-list {
          list-style: none;
          padding: 0;
          margin: 0;
        }
        
        .info-row {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 0.5rem 0;
          border-bottom: 1px solid rgba(220, 53, 69, 0.1);
          transition: var(--transition);
        }
        
        .info-row:last-child {
          border-bottom: none;
        }
        
        .info-row:hover {
          background: rgba(220, 53, 69, 0.05);
          margin: 0 -1rem;
          padding-left: 1rem;
          padding-right: 1rem;
          border-radius: var(--radius-small);
        }
        
        .info-label {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          font-weight: 600;
          color: var(--dark-gray);
          min-width: 120px;
        }
        
        .info-label i {
          color: var(--chili-red);
          width: 16px;
          text-align: center;
          font-size: 0.9rem;
        }
        
        .info-value {
          color: var(--text-color);
          font-weight: 500;
          text-align: right;
          flex-grow: 1;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
          .gallery-quick-specs {
            margin-bottom: 2rem;
            padding: 1.25rem;
          }
          
          .gallery-quick-specs h4 {
            font-size: 1.1rem;
          }
          
          .info-row {
            padding: 0.4rem 0;
            font-size: 0.85rem;
          }
          
          .info-label {
            min-width: 100px;
          }
          
          .info-value {
            text-align: left;
          }
        }

        /* Product Gallery Styling */
        .product-gallery {
            position: relative;
            border-radius: var(--radius-large);
            overflow: hidden;
            box-shadow: var(--shadow-light);
            margin-bottom: 2rem;
        }
        
        .main-product-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: var(--radius-large);
            transition: var(--transition);
        }
        
        .gallery-thumbs {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
            padding: 0 0.25rem;
        }
        
        .thumb-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: var(--radius-medium);
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
            opacity: 0.7;
        }
        
        .thumb-image:hover,
        .thumb-image.active {
            opacity: 1;
            transform: translateY(-2px);
        }
        
        .thumb-image:nth-child(1):hover,
        .thumb-image:nth-child(1).active {
            border-color: var(--chili-red);
        }
        
        .thumb-image:nth-child(2):hover,
        .thumb-image:nth-child(2).active {
            border-color: var(--turmeric-gold);
        }
        
        .thumb-image:nth-child(3):hover,
        .thumb-image:nth-child(3).active {
            border-color: var(--cumin-brown);
        }
        
        .thumb-image:nth-child(4):hover,
        .thumb-image:nth-child(4).active {
            border-color: var(--coriander-green);
        }
        
        .thumb-image:nth-child(5):hover,
        .thumb-image:nth-child(5).active {
            border-color: var(--black-pepper);
        }
        
        /* Mobile Gallery */
        @media (max-width: 768px) {
            .main-product-image {
                height: 300px;
            }
            
            .thumb-image {
                width: 60px;
                height: 60px;
            }
            
            .gallery-thumbs {
                gap: 0.5rem;
            }
        }

        /* Colorful Product Sections */
        .product-section {
            margin-bottom: 4rem;
        }

        .product-section h3 {
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 0.5rem;
            margin-bottom: 2rem;
            position: relative;
        }

        .product-section:nth-of-type(1) h3 {
            color: var(--chili-red);
        }

        .product-section:nth-of-type(1) h3::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--chili-red);
        }

        .product-section:nth-of-type(2) h3 {
            color: var(--turmeric-gold);
        }

        .product-section:nth-of-type(2) h3::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--turmeric-gold);
        }

        .product-section:nth-of-type(3) h3 {
            color: var(--cumin-brown);
        }

        .product-section:nth-of-type(3) h3::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--cumin-brown);
        }

        .product-section:nth-of-type(4) h3 {
            color: var(--coriander-green);
        }

        .product-section:nth-of-type(4) h3::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--coriander-green);
        }

        .product-section:nth-of-type(5) h3 {
            color: var(--paprika-orange);
        }

        .product-section:nth-of-type(5) h3::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--paprika-orange);
        }

        .product-section:nth-of-type(6) h3 {
            color: var(--garam-masala);
        }

        .product-section:nth-of-type(6) h3::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--garam-masala);
        }

        .product-section:nth-of-type(7) h3 {
            color: var(--export-blue);
        }

        .product-section:nth-of-type(7) h3::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--export-blue);
        }

        /* Variety Cards with Different Spice Colors */
        .variety-card {
            background: var(--white);
            border-radius: var(--radius-large);
            padding: 2rem;
            border: 1px solid var(--border-color);
            transition: var(--transition);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .variety-card:nth-child(1)::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--chili-red);
        }

        .variety-card:nth-child(2)::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--turmeric-gold);
        }

        .variety-card:nth-child(3)::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--cumin-brown);
        }

        .variety-card:nth-child(4)::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--coriander-green);
        }

        .variety-card:nth-child(5)::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--paprika-orange);
        }

        .variety-card:nth-child(6)::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--mustard-yellow);
        }

        .variety-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .variety-card:nth-child(1):hover {
            border-color: var(--chili-red);
            box-shadow: 0 8px 30px rgba(220, 53, 69, 0.3);
        }

        .variety-card:nth-child(2):hover {
            border-color: var(--turmeric-gold);
            box-shadow: 0 8px 30px rgba(244, 196, 48, 0.3);
        }

        .variety-card:nth-child(3):hover {
            border-color: var(--cumin-brown);
            box-shadow: 0 8px 30px rgba(139, 69, 19, 0.3);
        }

        .variety-card:nth-child(4):hover {
            border-color: var(--coriander-green);
            box-shadow: 0 8px 30px rgba(34, 139, 34, 0.3);
        }

        .variety-card:nth-child(5):hover {
            border-color: var(--paprika-orange);
            box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
        }

        .variety-card:nth-child(6):hover {
            border-color: var(--mustard-yellow);
            box-shadow: 0 8px 30px rgba(255, 219, 88, 0.3);
        }

        /* Colorful Variety Badges */
        .variety-badge {
            display: inline-block;
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            margin: 2px;
        }

        .variety-badge:nth-of-type(1) {
            background: var(--chili-red);
        }

        .variety-badge:nth-of-type(2) {
            background: var(--turmeric-gold);
        }

        .variety-badge:nth-of-type(3) {
            background: var(--cumin-brown);
        }

        .variety-badge:nth-of-type(4) {
            background: var(--coriander-green);
        }

        /* Colorful Specification Tables */
        .spec-table {
            background: var(--white);
            border-radius: var(--radius-large);
            overflow: hidden;
            box-shadow: var(--shadow-light);
            margin-bottom: 2rem;
        }

        .spec-table:nth-of-type(1) .spec-table-header {
            background: linear-gradient(135deg, var(--chili-red), var(--paprika-orange));
            color: white;
            padding: 1rem 1.5rem;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .spec-table:nth-of-type(2) .spec-table-header,
        #physical-spec .spec-table .spec-table-header {
            background: linear-gradient(135deg, var(--turmeric-gold), var(--mustard-yellow));
            color: white;
            padding: 1rem 1.5rem;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .spec-table:nth-of-type(3) .spec-table-header,
        #chemical-spec .spec-table .spec-table-header {
            background: linear-gradient(135deg, var(--cumin-brown), var(--garam-masala));
            color: white;
            padding: 1rem 1.5rem;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .spec-table:nth-of-type(4) .spec-table-header,
        #packaging-spec .spec-table .spec-table-header {
            background: linear-gradient(135deg, var(--coriander-green), var(--cardamom-sage));
            color: white;
            padding: 1rem 1.5rem;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .spec-table:nth-of-type(5) .spec-table-header,
        #export-spec .spec-table .spec-table-header {
            background: linear-gradient(135deg, var(--export-blue), var(--premium-gold));
            color: white;
            padding: 1rem 1.5rem;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .spec-table .table {
            margin-bottom: 0;
        }

        .spec-table .table th {
            background: var(--light-gray);
            border-bottom: 2px solid var(--border-color);
            font-weight: 600;
            color: var(--dark-gray);
        }

        .spec-table .table td {
            border-color: var(--border-color);
            vertical-align: middle;
        }

        .spec-table .table tbody tr:hover {
            background: rgba(220, 53, 69, 0.05);
        }

        /* Product Items with Spice Powder Colors */
        .product-item {
            background: var(--white);
            border-radius: var(--radius-medium);
            padding: 1.5rem;
            border: 1px solid var(--border-color);
            transition: var(--transition);
            text-align: center;
            height: 100%;
        }

        .product-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-light);
        }

        .product-item:nth-child(1) i {
            font-size: 2.5rem;
            color: var(--chili-red);
            margin-bottom: 1rem;
        }

        .product-item:nth-child(2) i {
            font-size: 2.5rem;
            color: var(--turmeric-gold);
            margin-bottom: 1rem;
        }

        .product-item:nth-child(3) i {
            font-size: 2.5rem;
            color: var(--cumin-brown);
            margin-bottom: 1rem;
        }

        .product-item:nth-child(4) i {
            font-size: 2.5rem;
            color: var(--coriander-green);
            margin-bottom: 1rem;
        }

        .product-item:nth-child(5) i {
            font-size: 2.5rem;
            color: var(--paprika-orange);
            margin-bottom: 1rem;
        }

        .product-item:nth-child(6) i {
            font-size: 2.5rem;
            color: var(--mustard-yellow);
            margin-bottom: 1rem;
        }

        .product-item:nth-child(7) i {
            font-size: 2.5rem;
            color: var(--fenugreek-amber);
            margin-bottom: 1rem;
        }

        .product-item:nth-child(8) i {
            font-size: 2.5rem;
            color: var(--cardamom-sage);
            margin-bottom: 1rem;
        }

        /* Tab System */
        .tab-navigation {
            border-bottom: 2px solid var(--border-color);
            margin-bottom: 2rem;
            overflow-x: auto;
            white-space: nowrap;
        }

        .tab-button {
            padding: 15px 25px;
            background: none;
            border: none;
            color: var(--dark-gray);
            font-weight: 600;
            transition: var(--transition);
            position: relative;
            cursor: pointer;
            font-size: 0.95rem;
            margin-right: 5px;
        }

        .tab-button:hover:not(.active) {
            color: var(--chili-red);
            background: var(--light-gray);
        }

        .specifications-section .spec-tab:nth-child(1).active {
            color: #228B22 !important;
        }

        .specifications-section .spec-tab:nth-child(1).active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 3px;
            background: #228B22 !important;
        }

        .specifications-section .spec-tab:nth-child(2).active {
            color: #DAA520 !important;
        }

        .specifications-section .spec-tab:nth-child(2).active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 3px;
            background: #DAA520 !important;
        }

        .specifications-section .spec-tab:nth-child(3).active {
            color: #D2691E !important;
        }

        .specifications-section .spec-tab:nth-child(3).active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 3px;
            background: #D2691E !important;
        }

        .specifications-section .spec-tab:nth-child(4).active {
            color: #DC143C !important;
        }

        .specifications-section .spec-tab:nth-child(4).active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 3px;
            background: #DC143C !important;
        }

        .specifications-section .spec-tab:nth-child(5).active {
            color: #1E88E5 !important;
        }

        .specifications-section .spec-tab:nth-child(5).active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 3px;
            background: #1E88E5 !important;
        }

        .tab-content {
            display: none;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .tab-content.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        /* Spice Information Section */
        .spice-information {
            background: linear-gradient(135deg,
            rgba(220, 53, 69, 0.05),
            rgba(244, 196, 48, 0.08),
            rgba(139, 69, 19, 0.05));
            border-radius: var(--radius-large);
            padding: 2.5rem;
            margin-bottom: 3rem;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-light);
            position: relative;
            overflow: hidden;
        }

        .spice-information::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg,
            var(--chili-red),
            var(--turmeric-gold),
            var(--cumin-brown),
            var(--coriander-green));
        }

        .spice-information h3 {
            color: var(--chili-red);
            margin-bottom: 1.5rem;
            border: none;
        }

        .spice-information h3::after {
            display: none;
        }

        /* Why Choose Our Cards Styling */
        .why-choose-card {
            background: var(--white);
            border-radius: var(--radius-large);
            padding: 2rem;
            height: 100%;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .why-choose-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--chili-red), var(--turmeric-gold));
            opacity: 0;
            transition: var(--transition);
        }

        .why-choose-card:hover::before {
            opacity: 1;
        }

        .why-choose-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
            border-color: var(--chili-red);
        }

        .why-choose-card h5 {
            color: var(--dark-gray);
            margin-bottom: 1rem;
            font-size: 1.1rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .why-choose-card h5 i {
            font-size: 1.2rem;
        }

        .why-choose-card:nth-child(1) h5 i {
            color: var(--chili-red);
        }

        .why-choose-card:nth-child(2) h5 i {
            color: var(--turmeric-gold);
        }

        .why-choose-card:nth-child(3) h5 i {
            color: var(--cumin-brown);
        }

        .why-choose-card:nth-child(4) h5 i {
            color: var(--coriander-green);
        }

        .why-choose-card p {
            color: var(--text-color);
            line-height: 1.7;
            margin-bottom: 0;
            font-size: 0.95rem;
        }

        /* Different colored borders on hover for each card */
        .why-choose-card:nth-child(1):hover {
            border-color: var(--chili-red);
            box-shadow: 0 8px 30px rgba(220, 53, 69, 0.2);
        }

        .why-choose-card:nth-child(2):hover {
            border-color: var(--turmeric-gold);
            box-shadow: 0 8px 30px rgba(244, 196, 48, 0.2);
        }

        .why-choose-card:nth-child(3):hover {
            border-color: var(--cumin-brown);
            box-shadow: 0 8px 30px rgba(139, 69, 19, 0.2);
        }

        .why-choose-card:nth-child(4):hover {
            border-color: var(--coriander-green);
            box-shadow: 0 8px 30px rgba(34, 139, 34, 0.2);
        }

        @media (max-width: 768px) {
            .why-choose-card {
                padding: 1.5rem;
            }

            .why-choose-card h5 {
                font-size: 1rem;
            }

            .why-choose-card p {
                font-size: 0.9rem;
            }
        }

        /* Info Cards */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .info-card {
            background: var(--white);
            border-radius: var(--radius-large);
            padding: 2rem;
            box-shadow: var(--shadow-light);
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .info-card:nth-child(1)::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--chili-red), var(--paprika-orange));
        }

        .info-card:nth-child(2)::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--export-blue), var(--premium-gold));
        }

        .info-card:nth-child(1) h5 {
            color: var(--chili-red);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .info-card:nth-child(2) h5 {
            color: var(--export-blue);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .info-table {
            width: 100%;
        }

        .info-table td {
            padding: 0.5rem 0;
            border: none;
        }

        .info-table td:first-child {
            font-weight: 600;
            color: var(--dark-gray);
            width: 40%;
        }

        /* FAQ Section */
        .faq-item {
            background: var(--white);
            border-radius: var(--radius-medium);
            margin-bottom: 1rem;
            border: 1px solid var(--border-color);
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-light);
        }

        .faq-question {
            background: var(--light-gray);
            padding: 1.2rem 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            width: 100%;
            text-align: left;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--dark-gray);
        }

        .faq-question:hover {
            background: rgba(220, 53, 69, 0.1);
            color: var(--chili-red);
        }

        .faq-answer {
            padding: 1.5rem;
            display: none;
            border-top: 1px solid var(--border-color);
            line-height: 1.7;
        }

        .faq-answer.show {
            display: block;
        }

        .breadcrumb {
            background: transparent;
            padding: 0;
            position: relative;
            z-index: 10;
            margin-bottom: 2rem;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            content: ">";
            color: rgba(255, 255, 255, 0.7);
        }

        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .product-hero {
                padding: 4rem 0 2rem;
            }

            .product-hero h1 {
                font-size: 2rem;
            }

            .main-product-image {
                height: 300px;
            }

            .info-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .variety-card,
            .info-card {
                padding: 1.5rem;
            }

            .export-stat-item {
                padding: 0.5rem;
            }

            .export-stat-number {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .product-hero h1 {
                font-size: 1.75rem;
            }

            .product-hero .lead {
                font-size: 1rem;
            }
        }

    /* Phone Call Button */
    .btn-phone-call {
      display: inline-block;
      padding: 12px 20px;
      font-size: 1rem;
      font-weight: 600;
      text-align: center;
      text-decoration: none;
      border: 2px solid var(--primary-color);
      border-radius: 25px;
      background: transparent;
      color: var(--primary-color);
      transition: var(--transition);
      cursor: pointer;
    }

    .btn-phone-call:hover {
      background: var(--primary-color);
      color: white;
      text-decoration: none;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(27, 122, 27, 0.3);
    }

    .btn-phone-call:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(27, 122, 27, 0.2);
    }

    .btn-phone-call i {
      color: inherit;
    }

    @media (max-width: 768px) {
      .btn-phone-call {
        padding: 10px 16px;
        font-size: 0.9rem;
        border-radius: 20px;
      }
    }

    @media (max-width: 576px) {
      .btn-phone-call {
        padding: 8px 14px;
        font-size: 0.85rem;
        border-radius: 18px;
      }
    }
