body.product-detail-page {
    padding-top: 140px;
}

@media (max-width: 992px) {
    body.product-detail-page {
        padding-top: 110px;
    }
}

@media (max-width: 768px) {
    body.product-detail-page {
        padding-top: 90px;
    }
}

/* Product Detail Hero */
.product-detail-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.product-detail-hero-background {
    position: absolute;
    inset: 0;
}

.product-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(59, 47, 47, 0.3) 0%, rgba(59, 47, 47, 0.7) 100%);
    z-index: 1;
}

.product-detail-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 3rem 0;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: rgba(248, 246, 240, 0.9);
}

.product-breadcrumb a {
    color: rgba(248, 246, 240, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-breadcrumb a:hover {
    color: #E8C469;
}

.product-breadcrumb span {
    color: rgba(248, 246, 240, 0.6);
}

.breadcrumb-arrow {
    width: 1rem;
    height: 1rem;
    stroke: rgba(248, 246, 240, 0.6);
    fill: none;
    stroke-width: 2;
}

.product-detail-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-detail-header .product-detail-badge {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.9);
    color: #1F1F1F;
    padding: 0.4rem 1.3rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.product-detail-header .product-detail-badge svg {
    width: 0.9rem;
    height: 0.9rem;
    stroke: #1F1F1F;
    fill: none;
    stroke-width: 2;
}

.product-detail-header .product-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

.product-detail-header .product-detail-subtitle {
    font-size: 1.1rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(232, 196, 105, 0.9);
    margin: 0;
}

/* Product Detail Content */
.product-detail-content {
    padding: 4rem 0 6rem;
    background: #ffffff;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: start;
}

.product-detail-gallery {
    position: sticky;
    top: 120px;
}

.product-detail-main-image {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    background: linear-gradient(135deg, #f7f5f1 0%, #f1f0eb 100%);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-detail-main-image:hover img {
    transform: scale(1.05);
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.product-detail-header-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid rgba(74, 124, 62, 0.3);
}

.product-detail-header-section .product-detail-badge {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.95);
    color: #1F1F1F;
    padding: 0.4rem 1.3rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.product-detail-header-section .product-detail-badge svg {
    width: 0.9rem;
    height: 0.9rem;
    stroke: #1F1F1F;
    fill: none;
    stroke-width: 2;
}

.product-detail-header-section .product-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1F1F1F;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
}

.product-detail-header-section .product-detail-subtitle {
    font-size: 1rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(31, 31, 31, 0.5);
    margin: 0;
}

.product-detail-description {
    padding-bottom: 1.25rem;
    border-bottom: 2px solid rgba(74, 124, 62, 0.3);
}

.product-detail-description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(31, 31, 31, 0.75);
    margin: 0;
}

.product-detail-specs {
    display: grid;
    gap: 0.75rem;
}

.product-spec-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.02);
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.product-spec-item:hover {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.product-spec-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem;
    background: rgba(15, 23, 42, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.product-spec-item:hover .product-spec-icon {
    background: linear-gradient(135deg, rgba(74, 124, 62, 0.1) 0%, rgba(232, 196, 105, 0.1) 100%);
}

.product-spec-icon svg {
    width: 1.3rem;
    height: 1.3rem;
    stroke: #1F1F1F;
    fill: none;
    stroke-width: 1.65;
}

.product-spec-label {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(31, 31, 31, 0.55);
    margin-bottom: 0.5rem;
    font-weight: 500;
    border-bottom: 2px solid rgba(74, 124, 62, 0.3);
    padding-bottom: 0.25rem;
    display: inline-block;
}

.product-spec-value {
    font-size: 1.05rem;
    color: rgba(31, 31, 31, 0.85);
    margin: 0;
    line-height: 1.6;
}

.product-detail-pricing {
    padding-top: 1.25rem;
    border-top: 2px solid rgba(74, 124, 62, 0.3);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.product-price {
    flex: 1;
}

.product-price-label {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(31, 31, 31, 0.5);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-price-value {
    font-size: 2.75rem;
    font-weight: 600;
    color: #1F1F1F;
    margin: 0 0 0.5rem 0;
    line-height: 1;
    letter-spacing: -0.02em;
}

.product-price-weight {
    font-size: 0.875rem;
    color: rgba(31, 31, 31, 0.55);
    margin: 0;
}

.product-order-button {
    padding: 1.1rem 2.75rem;
    border-radius: 999px;
    background: transparent;
    color: #1F1F1F;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 1.5px solid rgba(31, 31, 31, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    font-size: 1rem;
}

.product-order-button svg {
    width: 1.1rem;
    height: 1.1rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.product-order-button:hover {
    color: #ffffff;
    background: #1F1F1F;
    border-color: #1F1F1F;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(31, 31, 31, 0.25);
}

.product-order-button:hover svg {
    transform: translateX(4px);
}

/* Product Benefits */
.product-benefits {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fbf8f1 0%, #f4efe5 100%);
}

.product-benefits-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    color: #3B2F2F;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.product-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.product-benefit-card {
    background: #ffffff;
    padding: 2.25rem;
    border-radius: 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
}

.product-benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #4A7C3E 0%, #E8C469 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(74, 124, 62, 0.25);
}

.product-benefit-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2.5;
}

.product-benefit-text {
    font-size: 1.05rem;
    color: rgba(31, 31, 31, 0.85);
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Related Products */
.related-products {
    padding: 6rem 0;
    background: #ffffff;
}

.related-products-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    color: #3B2F2F;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .product-detail-grid {
        gap: 4rem;
    }
}

@media (max-width: 992px) {
    .product-detail-hero {
        height: 50vh;
        min-height: 400px;
    }

    .product-detail-hero-content {
        padding: 2rem 0;
    }

    .product-detail-header .product-detail-title {
        font-size: 2.5rem;
    }

    .product-detail-content {
        padding: 3rem 0 4rem;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-detail-gallery {
        position: relative;
        top: 0;
        max-width: 600px;
        margin: 0 auto;
    }

    .product-detail-main-image {
        aspect-ratio: 4/3;
    }

    .product-detail-header-section .product-detail-title {
        font-size: 2.5rem;
    }

    .product-detail-pricing {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .product-order-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .product-detail-hero {
        height: 40vh;
        min-height: 300px;
    }

    .product-detail-hero-content {
        padding: 2rem 0;
    }

    .product-breadcrumb {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .product-detail-header .product-detail-title {
        font-size: 2rem;
    }

    .product-detail-header .product-detail-subtitle {
        font-size: 0.9rem;
    }

    .product-detail-content {
        padding: 2.5rem 0 3rem;
    }

    .product-detail-header-section .product-detail-title {
        font-size: 2rem;
    }

    .product-detail-header-section .product-detail-subtitle {
        font-size: 0.9rem;
    }

    .product-detail-description-text {
        font-size: 1rem;
    }

    .product-spec-item {
        padding: 1.25rem;
    }

    .product-price-value {
        font-size: 2.25rem;
    }

    .product-benefits,
    .related-products {
        padding: 4rem 0;
    }

    .product-benefits-title,
    .related-products-title {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }

    .product-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .product-detail-hero {
        height: 35vh;
        min-height: 250px;
    }

    .product-detail-hero-content {
        padding: 1.5rem 0;
    }

    .product-breadcrumb {
        font-size: 0.75rem;
        gap: 0.4rem;
        margin-bottom: 1.25rem;
    }

    .breadcrumb-arrow {
        width: 0.875rem;
        height: 0.875rem;
    }

    .product-detail-header .product-detail-title {
        font-size: 1.75rem;
    }

    .product-detail-content {
        padding: 2rem 0 2.5rem;
    }

    .product-detail-header-section .product-detail-title {
        font-size: 1.75rem;
    }

    .product-detail-header-section {
        gap: 0.75rem;
        padding-bottom: 1.5rem;
    }

    .product-detail-badge {
        padding: 0.35rem 1.1rem;
        font-size: 0.75rem;
    }

    .product-spec-item {
        padding: 1rem;
        gap: 1rem;
    }

    .product-spec-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .product-price-value {
        font-size: 2rem;
    }

    .product-order-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .product-benefits-title,
    .related-products-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .product-benefit-card {
        padding: 1.75rem;
        gap: 1.25rem;
    }

    .product-benefit-icon {
        width: 3rem;
        height: 3rem;
    }
}

/* ============================================
   ENHANCED PRODUCT DETAIL STYLES
   ============================================ */

/* Enhanced Hero Section */
.product-detail-hero-enhanced {
    position: relative;
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.product-detail-tagline {
    font-size: 1.5rem;
    color: rgba(248, 246, 240, 0.9);
    margin: 0.5rem 0 2rem 0;
    font-style: italic;
    font-weight: 300;
}

.product-hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary.btn-golden {
    background: linear-gradient(135deg, #E8C469 0%, #D4AF37 100%);
    color: #1F1F1F;
    box-shadow: 0 8px 24px rgba(232, 196, 105, 0.3);
}

.btn-primary.btn-golden:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(232, 196, 105, 0.4);
}

.btn-outline.btn-white {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline.btn-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.btn svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Animated Steam */
.tea-steam {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
}

.steam {
    position: absolute;
    width: 4px;
    height: 60px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.6;
    animation: steam-rise 3s infinite ease-out;
}

.steam-1 {
    left: -20px;
    animation-delay: 0s;
}

.steam-2 {
    left: 0;
    animation-delay: 0.5s;
    height: 80px;
}

.steam-3 {
    left: 20px;
    animation-delay: 1s;
}

@keyframes steam-rise {
    0% {
        transform: translateY(0) scaleX(1);
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) scaleX(0.5);
        opacity: 0;
    }
}

/* Floating Tea Leaves */
.floating-leaves {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.leaf {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(74, 124, 62, 0.3);
    border-radius: 0 100% 0 100%;
    animation: float 8s infinite ease-in-out;
}

.leaf-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(45deg);
}

.leaf-2 {
    top: 40%;
    right: 15%;
    animation-delay: 2s;
    transform: rotate(-30deg);
    width: 25px;
    height: 25px;
}

.leaf-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    transform: rotate(60deg);
    width: 35px;
    height: 35px;
}

.leaf-4 {
    top: 60%;
    right: 25%;
    animation-delay: 6s;
    transform: rotate(-45deg);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-60px) translateX(-10px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(-20px) rotate(270deg);
        opacity: 0.5;
    }
}

/* Product Overview Section */
.product-overview-section {
    padding: 3rem 0;
    background: #ffffff;
}

.product-overview-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: start;
}

/* Image Gallery with Zoom */
.product-gallery-wrapper {
    position: sticky;
    top: 2rem;
}

.product-main-image-container {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image-zoom {
    position: relative;
    cursor: zoom-in;
    overflow: hidden;
}

.product-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

.product-image-zoom.zoomed .product-main-image {
    cursor: zoom-out;
}

.zoom-lens {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid #E8C469;
    border-radius: 50%;
    background: rgba(232, 196, 105, 0.1);
    display: none;
    pointer-events: none;
    z-index: 10;
}

.product-image-zoom-result {
    position: absolute;
    top: 0;
    right: -400px;
    width: 400px;
    height: 400px;
    border: 2px solid #E8C469;
    border-radius: 1rem;
    background-size: 200% 200%;
    background-repeat: no-repeat;
    display: none;
    z-index: 20;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Image Carousel */
.product-image-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.carousel-track {
    display: flex;
    gap: 0.75rem;
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(31, 31, 31, 0.2) transparent;
    padding: 0.25rem;
    -webkit-overflow-scrolling: touch;
    /* Show more images on larger screens */
    max-width: 100%;
}

@media (min-width: 768px) {
    .carousel-track {
        /* Show 4-5 images at once on tablets */
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .carousel-track {
        /* Show 5-6 images at once on desktop */
        gap: 1rem;
    }
}

.carousel-track::-webkit-scrollbar {
    height: 6px;
}

.carousel-track::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 3px;
}

.carousel-track::-webkit-scrollbar-thumb {
    background: rgba(31, 31, 31, 0.2);
    border-radius: 3px;
}

.carousel-track::-webkit-scrollbar-thumb:hover {
    background: rgba(31, 31, 31, 0.4);
}

.carousel-slide {
    position: relative;
    min-width: 90px;
    width: 90px;
    aspect-ratio: 1;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: #f5f5f5;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .carousel-slide {
        min-width: 100px;
        width: 100px;
    }
}

@media (min-width: 1024px) {
    .carousel-slide {
        min-width: 110px;
        width: 110px;
    }
}

.carousel-slide:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.carousel-slide.active {
    border-color: #E8C469;
    border-width: 3px;
    box-shadow: 0 4px 15px rgba(232, 196, 105, 0.3);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.carousel-slide:hover .carousel-slide-overlay {
    opacity: 1;
}

.carousel-slide-overlay svg {
    width: 24px;
    height: 24px;
    color: white;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.carousel-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(31, 31, 31, 0.2);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.carousel-btn:hover {
    background: #E8C469;
    border-color: #E8C469;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(232, 196, 105, 0.3);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn svg {
    width: 1.2rem;
    height: 1.2rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-indicator {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(31, 31, 31, 0.6);
    font-weight: 500;
}

.carousel-count {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.current-index {
    color: #E8C469;
    font-weight: 600;
}

.carousel-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: #1F1F1F;
    fill: none;
    stroke-width: 2;
}

.carousel-btn:hover svg {
    stroke: #ffffff;
}

/* Product Info Wrapper */
.product-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Benefits Icons */
.product-benefits-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(74, 124, 62, 0.3);
}

.benefit-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: rgba(74, 124, 62, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.benefit-icon-item:hover {
    background: rgba(74, 124, 62, 0.1);
    transform: translateY(-5px);
}

.benefit-icon-item svg {
    width: 2rem;
    height: 2rem;
    stroke: #4A7C3E;
    fill: #4A7C3E;
    opacity: 0.7;
}

.benefit-icon-item:hover svg {
    opacity: 1;
    transform: scale(1.1);
}

.benefit-icon-item span {
    font-size: 0.85rem;
    color: rgba(31, 31, 31, 0.7);
    text-align: center;
    font-weight: 500;
}

/* Availability Badge */
.product-availability {
    margin-top: 1rem;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.availability-badge.available {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.availability-badge.unavailable {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.availability-badge svg {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    fill: currentColor;
}

/* QR Code Section */
.product-qr-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.qr-label {
    font-size: 0.9rem;
    color: rgba(31, 31, 31, 0.6);
    margin-bottom: 1rem;
    font-weight: 600;
}

.qr-code-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qr-code-placeholder {
    width: 100px;
    height: 100px;
    background: #f5f5f5;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(31, 31, 31, 0.2);
}

.qr-code-placeholder svg {
    width: 60px;
    height: 60px;
    stroke: rgba(31, 31, 31, 0.3);
    fill: none;
    stroke-width: 1.5;
}

.qr-code-text {
    flex: 1;
    font-size: 0.9rem;
    color: rgba(31, 31, 31, 0.7);
    font-family: 'Courier New', monospace;
}

/* Brewing Instructions Section */
.brewing-instructions-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(74, 124, 62, 0.02) 0%, rgba(232, 196, 105, 0.02) 100%);
}

.brewing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.brewing-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1F1F1F;
    margin: 0 0 1rem 0;
}

.brewing-subtitle {
    font-size: 1.1rem;
    color: rgba(31, 31, 31, 0.6);
    margin: 0;
}

.brewing-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.brewing-step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.brewing-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.brewing-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #4A7C3E 0%, #E8C469 100%);
    border-radius: 1.5rem 0 0 1.5rem;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(74, 124, 62, 0.2);
    line-height: 1;
    min-width: 80px;
    text-align: center;
}

.step-content {
    flex: 1;
}

.step-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(74, 124, 62, 0.1) 0%, rgba(232, 196, 105, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: #4A7C3E;
    fill: #4A7C3E;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1F1F1F;
    margin: 0 0 0.75rem 0;
}

.step-description {
    font-size: 1rem;
    color: rgba(31, 31, 31, 0.7);
    line-height: 1.8;
    margin: 0 0 1rem 0;
}

.step-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(74, 124, 62, 0.05);
    border-radius: 0.5rem;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}

.detail-label {
    font-size: 0.85rem;
    color: rgba(31, 31, 31, 0.6);
    font-weight: 600;
}

.detail-value {
    font-size: 0.9rem;
    color: #4A7C3E;
    font-weight: 600;
}

.step-visual {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tea-cup-animation {
    width: 100px;
    height: 100px;
    border-radius: 0 0 50% 50%;
    background: linear-gradient(135deg, #4A7C3E 0%, #3B2F2F 100%);
    position: relative;
    animation: cup-pulse 2s infinite ease-in-out;
}

@keyframes cup-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cup-steeping .steam-animation {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.brewing-tips {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(232, 196, 105, 0.1);
    border-radius: 1rem;
    border-left: 4px solid #E8C469;
}

.tips-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: #E8C469;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tips-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: #1F1F1F;
    fill: none;
    stroke-width: 2;
}

.tips-content {
    flex: 1;
}

.tips-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #1F1F1F;
    margin: 0 0 0.5rem 0;
}

.tips-text {
    font-size: 1rem;
    color: rgba(31, 31, 31, 0.7);
    line-height: 1.8;
    margin: 0;
}

/* Cultural Story Section */
.cultural-story-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.cultural-story-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3B2F2F 0%, #4A7C3E 100%);
    z-index: 0;
}

.cultural-story-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.cultural-leaves {
    z-index: 1;
}

.cultural-story-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cultural-story-text {
    color: #ffffff;
}

.cultural-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(232, 196, 105, 0.2);
    color: #E8C469;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.cultural-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ffffff;
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.cultural-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
}

.cultural-description p {
    margin-bottom: 1.5rem;
}

.origin-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(232, 196, 105, 0.15);
    border-radius: 1rem;
    border-left: 4px solid #E8C469;
    margin-top: 2rem;
}

.origin-highlight svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: #E8C469;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.origin-highlight strong {
    color: #E8C469;
}

.cultural-story-image {
    position: relative;
}

.cultural-image-wrapper {
    border-radius: 1.5rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(140px, 1fr));
    gap: 1rem;
}

.cultural-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.cultural-image-main {
    grid-row: 1 / span 2;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
}

.cultural-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.cultural-image-secondary {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
    position: relative;
}

.cultural-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.cultural-image-main:hover img,
.cultural-image-secondary:hover img {
    transform: scale(1.05);
}

.cultural-image-wrapper--compact {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
}

.cultural-image-wrapper--compact .cultural-image-secondary {
    display: none;
}

@media (max-width: 992px) {
    .cultural-image-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .cultural-image-secondary {
        height: 220px;
    }
}

@media (max-width: 600px) {
    .cultural-image-main {
        min-height: 250px;
    }
    .cultural-image-secondary {
        height: 180px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 3rem 0;
    background: #ffffff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1F1F1F;
    margin: 0 0 1rem 0;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: rgba(31, 31, 31, 0.6);
    margin: 0;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.testimonial-card {
    padding: 2rem;
    background: rgba(74, 124, 62, 0.03);
    border-radius: 1.5rem;
    border: 1px solid rgba(74, 124, 62, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(74, 124, 62, 0.2);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating svg {
    width: 1.25rem;
    height: 1.25rem;
}

.testimonial-rating .star-filled {
    fill: #E8C469;
    stroke: #E8C469;
}

.testimonial-rating .star-empty {
    fill: transparent;
    stroke: rgba(31, 31, 31, 0.2);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(31, 31, 31, 0.8);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #4A7C3E 0%, #E8C469 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.25rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: #1F1F1F;
    margin: 0 0 0.25rem 0;
}

.author-date {
    font-size: 0.85rem;
    color: rgba(31, 31, 31, 0.5);
    margin: 0;
}

.customer-policies {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.policy-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(74, 124, 62, 0.05) 0%, rgba(232, 196, 105, 0.05) 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(74, 124, 62, 0.1);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.policy-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #4A7C3E 0%, #E8C469 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.policy-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    stroke: #ffffff;
    fill: #ffffff;
}

.policy-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1F1F1F;
    margin: 0 0 0.5rem 0;
}

.policy-description {
    font-size: 1rem;
    color: rgba(31, 31, 31, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Related Products */
.related-products-section {
    padding: 5rem 1rem;
    background: #F0F3F1;
}

.related-products-title {
    color: #2E5939;
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.related-product-card {
    position: relative;
    background: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
}

.related-product-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.related-product-image-container {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.related-product-image,
.related-product-image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-product-image-placeholder {
    background: linear-gradient(135deg, #4A7C3E 0%, #3B2F2F 100%);
}

.related-product-card:hover .related-product-image {
    transform: scale(1.1);
}

.related-product-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(46, 89, 57, 0.8) 0%, transparent 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.related-product-card:hover .related-product-gradient-overlay {
    opacity: 1;
}

.related-product-view-text {
    color: #FAF6EE;
    font-size: 0.875rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.related-product-card:hover .related-product-view-text {
    opacity: 1;
    transform: translateY(0);
}

.related-product-top-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-product-card:hover .related-product-top-gradient {
    opacity: 1;
}

.related-product-content {
    padding: 1.5rem;
}

.related-product-name {
    color: #2E5939;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.related-product-card:hover .related-product-name {
    color: #D1A054;
}

.related-product-description {
    color: rgba(46, 89, 57, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.related-product-price {
    color: #D1A054;
    font-size: 1rem;
    font-weight: 600;
}

.related-product-line-decoration {
    width: 3rem;
    height: 2px;
    background: #D1A054;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.related-product-card:hover .related-product-line-decoration {
    transform: scaleX(1);
}

.related-product-border {
    position: absolute;
    inset: 0;
    border: 2px solid #D1A054;
    border-radius: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.related-product-card:hover .related-product-border {
    opacity: 1;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(31, 31, 31, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-nav-btn:hover {
    background: #E8C469;
    border-color: #E8C469;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: #1F1F1F;
    fill: none;
    stroke-width: 2;
}

.carousel-nav-btn:hover svg {
    stroke: #ffffff;
}

.carousel-prev-related {
    left: -1.5rem;
}

.carousel-next-related {
    right: -1.5rem;
}

/* AI Tea Guide */
.ai-tea-guide {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #4A7C3E 0%, #E8C469 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(74, 124, 62, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.ai-tea-guide:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(74, 124, 62, 0.4);
}

.guide-icon {
    width: 2rem;
    height: 2rem;
}

.guide-icon svg {
    width: 100%;
    height: 100%;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
}

.guide-tooltip {
    position: absolute;
    bottom: calc(100% + 1rem);
    right: 0;
    padding: 0.75rem 1rem;
    background: #1F1F1F;
    color: #ffffff;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.guide-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 1rem;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #1F1F1F;
}

.ai-tea-guide:hover .guide-tooltip {
    opacity: 1;
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
    .product-overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-gallery-wrapper {
        position: static;
    }

    .cultural-story-content {
        grid-template-columns: 1fr;
    }

    .brewing-step {
        grid-template-columns: auto 1fr;
    }

    .step-visual {
        display: none;
    }

    .customer-policies {
        grid-template-columns: 1fr;
    }

    .product-benefits-icons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-detail-hero-enhanced {
        height: 50vh;
        min-height: 400px;
    }

    .product-hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .product-image-zoom-result {
        display: none;
    }

    .zoom-lens {
        display: none;
    }

    .brewing-title,
    .testimonials-title,
    .cultural-title {
        font-size: 2rem;
    }

    .step-number {
        font-size: 2rem;
        min-width: 60px;
    }

    .ai-tea-guide {
        width: 3.5rem;
        height: 3.5rem;
        bottom: 1rem;
        right: 1rem;
    }

    .carousel-prev-related,
    .carousel-next-related {
        display: none;
    }

    .related-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .related-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Commitment Section */
.commitment-section {
    padding: 3rem 1rem;
    margin-top: 3rem;
}

.commitment-card {
    position: relative;
    margin: 0 auto;
    max-width: 80rem;
    overflow: hidden;
    border-radius: 1rem;
    background: linear-gradient(to right, #1D4A2E 0%, #2A5D3E 100%);
    padding: 2rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.commitment-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}

.commitment-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #C9A13F;
    font-family: 'Lobster', cursive;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .commitment-title {
        font-size: 1.875rem;
    }
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .commitment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.commitment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.commitment-icon {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.commitment-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .related-products-grid {
        grid-template-columns: 1fr;
    }
    
    .related-products-section {
        padding: 3rem 1rem;
    }
    
    .related-products-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}