    /* Oregano-specific styling using Mediterranean herb colors */
    :root {
      --oregano-green: #2E8B57;      /* Mediterranean green */
      --herb-green: #228B22;         /* Forest green */
      --mediterranean-olive: #808000; /* Olive green */
      --herb-sage: #9CAF88;          /* Sage green */
      --mountain-green: #355E3B;     /* Mountain green */
      --turkish-bronze: #CD7F32;     /* Turkish bronze */
      --greek-blue: #0080FF;         /* Greek blue */
      --essential-gold: #FFD700;     /* Essential oil gold */
    }

    /* Info Grid and Cards - Missing styles */
    .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;
      height: 100%;
      transition: var(--transition);
    }

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

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

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

    .info-card h5 {
      color: var(--oregano-green);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 600;
    }

    .info-table {
      width: 100%;
      border-collapse: collapse;
    }

    .info-table td {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-color);
      font-size: 0.95rem;
    }

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

    .info-table td:last-child {
      color: var(--medium-gray);
    }

    /* Product Items - Fixed styling */
    .product-item {
      background: var(--white);
      border-radius: var(--radius-medium);
      padding: 2rem;
      border: 1px solid var(--border-color);
      transition: var(--transition);
      text-align: center;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .product-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--oregano-green);
      transition: var(--transition);
    }

    .product-item:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-medium);
      border-color: var(--oregano-green);
    }

    .product-item:nth-child(1)::before { background: var(--oregano-green); }
    .product-item:nth-child(2)::before { background: var(--herb-green); }
    .product-item:nth-child(3)::before { background: var(--turkish-bronze); }
    .product-item:nth-child(4)::before { background: var(--mediterranean-olive); }
    .product-item:nth-child(5)::before { background: var(--mountain-green); }
    .product-item:nth-child(6)::before { background: var(--greek-blue); }
    .product-item:nth-child(7)::before { background: var(--essential-gold); }
    .product-item:nth-child(8)::before { background: var(--herb-sage); }

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

    .product-item:nth-child(1) i { color: var(--oregano-green); }
    .product-item:nth-child(2) i { color: var(--herb-green); }
    .product-item:nth-child(3) i { color: var(--turkish-bronze); }
    .product-item:nth-child(4) i { color: var(--mediterranean-olive); }
    .product-item:nth-child(5) i { color: var(--mountain-green); }
    .product-item:nth-child(6) i { color: var(--greek-blue); }
    .product-item:nth-child(7) i { color: var(--essential-gold); }
    .product-item:nth-child(8) i { color: var(--herb-sage); }

    .product-item h5 {
      color: var(--black);
      font-weight: 600;
      margin-bottom: 1rem;
    }

    /* Application Items - Fixed styling */
    .application-item {
      background: var(--white);
      border-radius: var(--radius-medium);
      padding: 1.5rem;
      transition: var(--transition);
      margin-bottom: 1rem;
      border: 1px solid var(--border-color);
      position: relative;
      overflow: hidden;
    }

    .application-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      transition: var(--transition);
    }

    .application-item:nth-child(1)::before { background: var(--oregano-green); }
    .application-item:nth-child(2)::before { background: var(--herb-green); }
    .application-item:nth-child(3)::before { background: var(--turkish-bronze); }
    .application-item:nth-child(4)::before { background: var(--mediterranean-olive); }
    .application-item:nth-child(5)::before { background: var(--mountain-green); }
    .application-item:nth-child(6)::before { background: var(--greek-blue); }
    .application-item:nth-child(7)::before { background: var(--essential-gold); }
    .application-item:nth-child(8)::before { background: var(--herb-sage); }

    .application-item:hover {
      transform: translateX(5px);
      box-shadow: var(--shadow-light);
      border-color: var(--oregano-green);
    }

    .application-item h6 {
      color: var(--black);
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

    .application-item p {
      color: var(--dark-gray);
      margin-bottom: 0.5rem;
      line-height: 1.6;
    }

    .application-item small {
      color: var(--medium-gray);
    }

    /* Spice Information Section Styling */
    .spice-information {
      background: linear-gradient(135deg,
      rgba(46, 139, 87, 0.05),
      rgba(34, 139, 34, 0.08),
      rgba(128, 128, 0, 0.05));
      border-radius: var(--radius-large);
      padding: 2.5rem;
      margin-bottom: 3rem;
      margin-top: 2rem;
      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(--oregano-green), var(--herb-green));
    }

    .spice-information h3 {
      color: var(--oregano-green);
      font-weight: 700;
      margin-bottom: 1.5rem;
      font-size: 1.4rem;
    }

    .spice-information p {
      color: var(--dark-gray);
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .spice-information p:last-child {
      margin-bottom: 0;
    }

    .spice-information strong {
      color: var(--oregano-green);
      font-weight: 600;
    }

    /* Enhanced Table Styling */
    .spec-table .table {
      margin-bottom: 0;
      font-size: 0.95rem;
    }

    .spec-table .table th {
      background: rgba(255, 255, 255, 0.1);
      border-bottom: 2px solid rgba(255, 255, 255, 0.2);
      font-weight: 600;
      color: white;
      padding: 1rem 0.75rem;
      font-size: 0.9rem;
    }

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

    .spec-table .table tbody tr:hover {
      background: rgba(46, 139, 87, 0.05);
    }

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

    .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;
      border-radius: var(--radius-small) var(--radius-small) 0 0;
      white-space: nowrap;
    }

    .tab-button:hover {
      background: var(--light-gray);
      color: var(--oregano-green);
    }

    .tab-button.active {
      background: var(--oregano-green);
      color: white;
    }

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

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

    /* FAQ Enhancement */
    .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);
      border-color: var(--oregano-green);
    }

    .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(46, 139, 87, 0.1);
      color: var(--oregano-green);
    }

    .faq-question i {
      color: var(--oregano-green);
      transition: var(--transition);
    }

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

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

    /* Breadcrumb Styling */
    .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;
    }

    /* CTA Buttons Enhancement */
    .btn-large.touch-target {
      padding: 15px 30px;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 25px;
    }

    .btn-cta.touch-target {
      background: var(--cta-color);
      border-color: var(--cta-color);
      color: white;
    }

    .btn-cta.touch-target:hover {
      background: var(--cta-hover-color);
      border-color: var(--cta-hover-color);
      color: white;
      transform: translateY(-2px);
    }

    .btn-outline.touch-target {
      background: transparent;
      color: var(--oregano-green);
      border-color: var(--oregano-green);
    }

    .btn-outline.touch-target:hover {
      background: var(--oregano-green);
      color: white;
      border-color: var(--oregano-green);
    }

    /* Mobile Table Responsiveness */
    @media (max-width: 768px) {
      .table-responsive {
        border: 1px solid var(--border-color);
        border-radius: var(--radius-medium);
        margin-bottom: 1rem;
      }

      .spec-table .table th,
      .spec-table .table td {
        padding: 0.5rem;
        font-size: 0.85rem;
      }

      .tab-navigation {
        padding: 0 1rem;
      }

      .tab-button {
        padding: 12px 20px;
        font-size: 0.9rem;
      }

      .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
      }

      .faq-answer {
        padding: 1rem;
        font-size: 0.9rem;
      }

      .application-item {
        padding: 1rem;
      }

      .product-item {
        padding: 1.5rem;
      }

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

    /* Mobile Responsiveness Enhancements */
    @media (max-width: 992px) {
      .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .product-item, .application-item {
        padding: 1.5rem;
      }

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

    /* Mobile Touch Targets */
    .touch-target {
      min-height: 44px;
      min-width: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    /* Ensure proper spacing and layout */
    .section {
      padding: 4rem 0;
    }

    .product-section {
      margin-bottom: 4rem;
    }

    .product-section:last-child {
      margin-bottom: 2rem;
    }

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

    /* Hero Section */
    .product-hero {
      background: linear-gradient(135deg,
      rgba(46, 139, 87, 0.6),
      rgba(34, 139, 34, 0.5),
      rgba(128, 128, 0, 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.2);
    }

    .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.9);
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
      font-size: 1.2rem;
    }

    /* Gallery Styling */
    .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(--oregano-green);
      transform: translateY(-2px);
    }

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

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

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

    /* Variety Cards with herb-themed 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(--oregano-green);
    }

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

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

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

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

    .variety-card:nth-child(1):hover {
      border-color: var(--oregano-green);
      box-shadow: 0 8px 30px rgba(46, 139, 87, 0.3);
    }

    .variety-card:nth-child(2):hover {
      border-color: var(--turkish-bronze);
      box-shadow: 0 8px 30px rgba(205, 127, 50, 0.3);
    }

    .variety-card:nth-child(3):hover {
      border-color: var(--greek-blue);
      box-shadow: 0 8px 30px rgba(0, 128, 255, 0.3);
    }

    .variety-card:nth-child(4):hover {
      border-color: var(--mediterranean-olive);
      box-shadow: 0 8px 30px rgba(128, 128, 0, 0.3);
    }

    .variety-card h5 {
      color: var(--black);
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .variety-card p {
      color: var(--medium-gray);
      line-height: 1.6;
    }

    .variety-card ul {
      margin-top: 1rem;
    }

    .variety-card ul li {
      margin-bottom: 0.5rem;
      color: var(--dark-gray);
    }

    /* Herb-themed 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(--oregano-green);
    }

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

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

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

    /* Product sections with herb colors */
    .product-section {
      margin-bottom: 4rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /* Specification tables with herb colors */
    .spec-table {
      background: var(--white);
      border-radius: var(--radius-large);
      overflow: hidden;
      box-shadow: var(--shadow-light);
      margin-bottom: 2rem;
      border: 1px solid var(--border-color);
    }

    .spec-table:nth-of-type(1) .spec-table-header {
      background: linear-gradient(135deg, var(--oregano-green), var(--herb-green));
      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(--turkish-bronze), var(--mediterranean-olive));
      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(--essential-gold), var(--oregano-green));
      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(--greek-blue), var(--herb-green));
      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(--mountain-green), var(--mediterranean-olive));
      color: white;
      padding: 1rem 1.5rem;
      font-weight: 600;
      font-size: 1.1rem;
    }

    /* Spice Information Section */
    .spice-information {
      background: linear-gradient(135deg,
      rgba(46, 139, 87, 0.05),
      rgba(34, 139, 34, 0.08),
      rgba(128, 128, 0, 0.05));
      border-radius: var(--radius-large);
      padding: 2.5rem;
      margin-bottom: 3rem;
      margin-top: 2rem;
      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(--oregano-green),
      var(--herb-green),
      var(--turkish-bronze),
      var(--mediterranean-olive));
    }

    .spice-information h3 {
      color: var(--mountain-green);
      margin-bottom: 1.5rem;
      border: none;
      font-weight: 600;
    }

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

    .spice-information p {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--dark-gray);
      margin-bottom: 1.2rem;
    }

    .spice-information p:last-child {
      margin-bottom: 0;
    }

    /* Oregano Information Section (Legacy Support) */
    .oregano-information {
      background: linear-gradient(135deg,
      rgba(46, 139, 87, 0.05),
      rgba(34, 139, 34, 0.08),
      rgba(128, 128, 0, 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;
    }

    .oregano-information::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg,
      var(--oregano-green),
      var(--herb-green),
      var(--turkish-bronze),
      var(--mediterranean-olive));
    }

    .oregano-information h3 {
      color: var(--mountain-green);
      margin-bottom: 1.5rem;
      border: none;
      font-weight: 600;
    }

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

    .oregano-information p {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--dark-gray);
      margin-bottom: 1.2rem;
    }

    /* Oregano variety cards with herb-themed 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(--oregano-green);
    }

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

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

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

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

    .variety-card:nth-child(1):hover {
      border-color: var(--oregano-green);
      box-shadow: 0 8px 30px rgba(46, 139, 87, 0.3);
    }

    .variety-card:nth-child(2):hover {
      border-color: var(--turkish-bronze);
      box-shadow: 0 8px 30px rgba(205, 127, 50, 0.3);
    }

    .variety-card:nth-child(3):hover {
      border-color: var(--greek-blue);
      box-shadow: 0 8px 30px rgba(0, 128, 255, 0.3);
    }

    .variety-card:nth-child(4):hover {
      border-color: var(--mediterranean-olive);
      box-shadow: 0 8px 30px rgba(128, 128, 0, 0.3);
    }

    /* Herb-themed 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(--oregano-green);
    }

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

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

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

    /* Product sections with herb colors */
    .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(--oregano-green);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /* Specification tables with herb colors */
    .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(--oregano-green), var(--herb-green));
      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(--turkish-bronze), var(--mediterranean-olive));
      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(--essential-gold), var(--oregano-green));
      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(--greek-blue), var(--herb-green));
      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(--mountain-green), var(--mediterranean-olive));
      color: white;
      padding: 1rem 1.5rem;
      font-weight: 600;
      font-size: 1.1rem;
    }

    /* Oregano Information Section */
    .oregano-information {
      background: linear-gradient(135deg,
      rgba(46, 139, 87, 0.05),
      rgba(34, 139, 34, 0.08),
      rgba(128, 128, 0, 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;
    }

    .oregano-information::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg,
      var(--oregano-green),
      var(--herb-green),
      var(--turkish-bronze),
      var(--mediterranean-olive));
    }

    .oregano-information h3 {
      color: var(--mountain-green);
      margin-bottom: 1.5rem;
      border: none;
    }

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

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

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

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

    @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;
      }
    }

    /* Gallery Split Layout */
    .gallery-quick-specs {
      background: var(--white);
      border-radius: var(--radius-medium);
      padding: 1.5rem;
      box-shadow: var(--shadow-light);
      border: 1px solid var(--border-color);
    }

    .gallery-quick-specs h4 {
      color: var(--primary-color);
      margin-bottom: 0.5rem;
      font-size: 1.25rem;
    }

    .quick-info-list {
      margin-bottom: 1.5rem;
    }

    .info-row {
      display: flex;
      align-items: center;
      padding: 0.5rem 0;
      font-size: 0.9rem;
    }

    .info-row span {
      line-height: 1.4;
    }

    /* Responsive Design */
    @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;
      }
    }
    /* Gallery Quick Specs Styling */
    .gallery-quick-specs {
      background: linear-gradient(135deg, 
          rgba(46, 139, 87, 0.05), 
          rgba(34, 139, 34, 0.08));
      border-radius: var(--radius-large);
      padding: 1.5rem;
      box-shadow: var(--shadow-light);
      border: 1px solid var(--border-color);
      height: fit-content;
    }
    
    .gallery-quick-specs h4 {
      color: var(--oregano-green);
      margin-bottom: 1rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .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(46, 139, 87, 0.1);
      transition: var(--transition);
    }
    
    .info-row:last-child {
      border-bottom: none;
    }
    
    .info-row:hover {
      background: rgba(46, 139, 87, 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(--oregano-green);
      width: 16px;
      text-align: center;
      font-size: 0.9rem;
    }
    
    .info-value {
      color: var(--text-color);
      font-weight: 500;
      text-align: right;
      flex-grow: 1;
    }
