/* ─────────────────────────────────────────────────────────────────────────────
   Two Taks — Pages CSS
   Shop, Product Detail, About, Contact
   ───────────────────────────────────────────────────────────────────────────── */

/* ─── Page Hero ──────────────────────────────────────────────────────────────── */

.tt-page-hero {
    padding-top: 0;
    overflow: hidden;
}

.tt-page-hero .hero-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 40px;
}

.tt-page-hero .hero-img-col {
    min-height: 500px;
}

.tt-breadcrumb {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888;
    margin-bottom: 20px;
}

.tt-breadcrumb a { color: #888; text-decoration: none; }
.tt-breadcrumb a:hover { color: #232323; }
.tt-breadcrumb span { margin: 0 8px; }

/* ─── Shop Page ──────────────────────────────────────────────────────────────── */

/* Filter bar */
.tt-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.tt-filter-btn {
    background: transparent;
    border: 1px solid #ddd;
    color: #232323;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 9px 20px 7px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--primary-font);
}

.tt-filter-btn:hover,
.tt-filter-btn.active {
    background: #232323;
    border-color: #232323;
    color: #fff;
}

/* Products grid */
#tt-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Product card */
.tt-product-card .tt-card-inner {
    transition: box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.tt-product-card .tt-card-inner:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.12) !important;
}

.tt-card-img-wrap {
    aspect-ratio: 1 / 1;
    background: #f4f9f6;
}

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

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

.tt-card-img-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f4f9f6;
}

/* Category badge */
.tt-category-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #91D800;
    margin-bottom: 8px;
}

/* Skeleton loader */
.tt-skeleton-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.tt-skeleton-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: tt-shimmer 1.5s infinite;
}

.tt-skeleton-line {
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: tt-shimmer 1.5s infinite;
    border-radius: 4px;
    margin: 12px 20px;
}

.tt-skeleton-line.short { width: 40%; }
.tt-skeleton-line.medium { width: 65%; }

@keyframes tt-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ─── Product Detail — Tagline, Rating & Benefits ───────────────────────────── */

.tt-product-tagline {
    font-size: 17px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
}

.tt-star-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}

.tt-stars i {
    font-size: 11px;
    color: #91D800;
    margin-right: 1px;
}

.tt-product-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tt-product-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.tt-product-benefits li::before {
    content: '';
    width: 20px;
    min-width: 20px;
    height: 20px;
    background: #91D800;
    border-radius: 50%;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23232323' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

/* ─── Product Video Section ──────────────────────────────────────────────────── */

.tt-product-video-section {
    padding: 0 0 80px;
    background: #fff;
}

.tt-video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 575px) {
    .tt-product-video-section {
        padding: 0 0 50px;
    }
}

/* ─── Product Features Section ───────────────────────────────────────────────── */

.tt-features-section {
    padding: 80px 0;
    background: #fff;
}

.tt-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tt-feature-card {
    padding: 45px 35px;
    background: #f4f9f6;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tt-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.tt-feature-icon {
    width: 68px;
    height: 68px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.tt-feature-icon i {
    font-size: 26px;
    color: #91D800;
}

@media (max-width: 991px) {
    .tt-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 520px;
        margin: 0 auto;
    }
    .tt-features-section {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .tt-features-section {
        padding: 50px 0;
    }
    .tt-feature-card {
        padding: 32px 25px;
    }
    .tt-feature-icon {
        width: 58px;
        height: 58px;
    }
    .tt-feature-icon i {
        font-size: 22px;
    }
}

/* ─── Product Perks Strip ─────────────────────────────────────────────────────── */

.tt-perks-strip {
    background: #f4f9f6;
    border-top: 1px solid #e4edd8;
    border-bottom: 1px solid #e4edd8;
    padding: 50px 0;
}

.tt-perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tt-perk-item {
    text-align: center;
}

.tt-perk-icon {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.tt-perk-icon i {
    font-size: 20px;
    color: #91D800;
}

.tt-perk-title {
    font-size: 14px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 4px;
    font-family: var(--alt-font);
}

.tt-perk-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 767px) {
    .tt-perks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .tt-perks-strip {
        padding: 35px 0;
    }
}

@media (max-width: 479px) {
    .tt-perks-grid {
        gap: 18px;
    }
    .tt-perk-icon {
        width: 48px;
        height: 48px;
    }
    .tt-perk-icon i {
        font-size: 18px;
    }
    .tt-perk-title {
        font-size: 13px;
    }
    .tt-perk-desc {
        font-size: 12px;
    }
}

/* ─── Product Detail Page ────────────────────────────────────────────────────── */

/* Gallery */
.tt-product-gallery {
    position: sticky;
    top: 100px;
}

.tt-main-image {
    border-radius: 8px;
    overflow: hidden;
    background: #f4f9f6;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tt-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tt-main-image:hover img {
    transform: scale(1.03);
}

.tt-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.tt-thumb {
    width: 72px;
    height: 72px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    flex-shrink: 0;
}

.tt-thumb.active,
.tt-thumb:hover {
    border-color: #232323;
}

.tt-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product info */
.tt-product-info-col {
    padding-left: 40px;
}

/* Variant buttons */
.tt-variant-btn {
    background: #fff;
    border: 1.5px solid #ddd;
    color: #232323;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--primary-font);
}

.tt-variant-btn:hover {
    border-color: #232323;
}

.tt-variant-btn.sold-out {
    opacity: 0.45;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Quantity box */
.tt-qty-box {
    display: flex;
    align-items: center;
    border: 1.5px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    height: 52px;
}

.tt-page-qty-btn {
    background: #f5f5f5;
    border: none;
    width: 44px;
    height: 100%;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #232323;
    transition: background 0.2s;
    line-height: 1;
    flex-shrink: 0;
}

.tt-page-qty-btn:hover {
    background: #91D800;
}

.tt-qty-field {
    width: 50px;
    padding: 0 !important;
    text-align: center;
    border: none;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    font-size: 16px;
    font-weight: 600;
    color: #232323 !important;
    -webkit-text-fill-color: #232323 !important;
    background: #fff !important;
    height: 100%;
    -moz-appearance: textfield;
    -webkit-appearance: none;
    font-family: var(--primary-font);
    outline: none;
    caret-color: transparent;
    user-select: none;
    pointer-events: none;
}

.tt-qty-field::-webkit-inner-spin-button,
.tt-qty-field::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Trust badges */
.tt-trust-badges {
    padding-top: 25px;
    margin-top: 5px;
}

.tt-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
}

.tt-trust-badge i {
    color: #91D800;
    font-size: 18px;
}

/* Product Tabs */
.tt-product-tabs .nav-tabs {
    border-bottom: 2px solid #ebebeb;
    gap: 0;
}

.tt-product-tabs .nav-tabs .nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #888;
    padding: 15px 25px;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: var(--primary-font);
    background: transparent;
    transition: color 0.2s;
}

.tt-product-tabs .nav-tabs .nav-link:hover {
    color: #232323;
}

.tt-product-tabs .nav-tabs .nav-link.active {
    color: #232323;
    border-bottom-color: #91D800;
    background: transparent;
}

.tt-product-tabs .tab-content {
    padding: 40px 0;
    font-size: 16px;
    line-height: 28px;
    color: #555;
}

/* Ingredients list */
.tt-ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tt-ingredient-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: #f4f9f6;
    border-radius: 8px;
}

.tt-ingredient-icon {
    width: 40px;
    height: 40px;
    background: #91D800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tt-ingredient-icon i {
    color: #232323;
    font-size: 16px;
}

/* Related products */
#tt-related-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Loading spinner */
.tt-loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f0f0f0;
    border-top: 3px solid #91D800;
    border-radius: 50%;
    animation: tt-spin 0.8s linear infinite;
    margin: 80px auto;
}

@keyframes tt-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ─── About Page ──────────────────────────────────────────────────────────────── */

/* About hero — centered, with proper vertical spacing */
.tt-about-hero {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (max-width: 991px) {
    .tt-about-hero {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 575px) {
    .tt-about-hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* Hero ghost button */
.tt-btn-ghost-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff !important;
    transition: border-color 0.25s, background 0.25s;
}
.tt-btn-ghost-white:hover {
    border-color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.08);
    color: #fff !important;
}

/* Stat items with vertical dividers */
.tt-stat-item {
    padding: 0 24px;
    border-right: 1px solid #e5e5e5;
}
.tt-stat-item:last-child {
    border-right: none;
}
.tt-stat-item:first-child {
    padding-left: 0;
}

/* Process step numbers */
.tt-process-number {
    font-size: 4.5rem;
    font-weight: 700;
    color: #91D800;
    line-height: 1;
    font-family: var(--alt-font);
}

@media (max-width: 991px) {
    .tt-stat-item {
        border-right: none;
        padding: 6px 16px;
    }
    .tt-stat-item:first-child {
        padding-left: 16px;
    }
    .tt-mission-stats {
        justify-content: center;
        gap: 0;
    }
}

@media (max-width: 767px) {
    .tt-process-number {
        font-size: 3.5rem;
    }
    .tt-page-hero .hero-text-col {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (max-width: 575px) {
    .tt-stat-item {
        padding: 6px 12px;
        min-width: 80px;
    }
    .tt-mission-number {
        font-size: 3rem !important;
    }
}

.tt-mission-number {
    font-size: 6rem;
    font-weight: 700;
    color: #91D800;
    line-height: 1;
    font-family: var(--alt-font);
}

/* Stats row: even spacing */
.tt-mission-stats {
    gap: 2rem;
}

.tt-value-card {
    padding: 35px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tt-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.10);
}

.tt-value-card .icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(145, 216, 0, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tt-value-card .icon-wrap i {
    font-size: 22px;
    color: #91D800;
}

/* Ingredient detail cards — inside bg-dark-gray section */
.tt-ingredient-detail {
    padding: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid #91D800;
    transition: background 0.25s ease;
}

.tt-ingredient-detail:hover {
    background: rgba(255, 255, 255, 0.08);
}

.tt-ingredient-detail .text-medium-gray {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* ─── Contact Page ────────────────────────────────────────────────────────────── */

.tt-contact-form .form-control {
    border: 1.5px solid #e5e5e5;
    border-radius: 4px;
    padding: 14px 18px;
    font-size: 15px;
    color: #232323;
    font-family: var(--primary-font);
    transition: border-color 0.2s;
    background: #fff;
}

.tt-contact-form .form-control:focus {
    border-color: #91D800;
    box-shadow: 0 0 0 3px rgba(145, 216, 0, 0.15);
    outline: none;
}

.tt-contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.tt-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.tt-contact-info-item .icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(145, 216, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tt-contact-info-item .icon-wrap i {
    font-size: 20px;
    color: #91D800;
}

/* Form success */
#tt-contact-success {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

#tt-contact-success i {
    font-size: 3rem;
    color: #91D800;
    margin-bottom: 20px;
    display: block;
}

/* ─── Product detail — JS-rendered element overrides ────────────────────────── */

/* Breadcrumb truncation on mobile */
.tt-breadcrumb {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* ─── Responsive ──────────────────────────────────────────────────────────────── */

@media (max-width: 991px) {
    #tt-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    #tt-related-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tt-product-info-col {
        padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
        margin-top: 40px;
    }

    .tt-ingredients-grid {
        grid-template-columns: 1fr;
    }

    .tt-page-hero .hero-text-col {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .tt-mission-number {
        font-size: 4.5rem;
    }

    /* About — fix floating rating card overflow on tablets */
    figure.position-relative .position-absolute.left-minus-60px {
        left: 15px !important;
    }

    /* Give the figure column bottom padding so the floating card doesn't overlap */
    .col-lg-6.md-mb-50px figure.position-relative {
        padding-bottom: 50px;
    }
}

@media (max-width: 767px) {
    #tt-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    #tt-related-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .tt-product-gallery {
        position: static;
    }

    .tt-page-hero .hero-img-col {
        min-height: 260px;
    }

    .tt-page-hero .hero-text-col {
        padding-top: 60px;
        padding-bottom: 30px;
    }

    .tt-value-card {
        padding: 25px 20px;
    }

    .tt-contact-info-item {
        padding: 18px;
        gap: 14px;
    }

    .tt-contact-info-item .icon-wrap {
        width: 44px;
        height: 44px;
    }

    .tt-mission-number {
        font-size: 3.5rem;
    }

    /* About — center stats row on mobile */
    .tt-mission-stats {
        justify-content: center;
    }

    .tt-product-tabs .nav-tabs .nav-link {
        font-size: 13px;
        padding: 12px 16px;
    }

    .tt-qty-box {
        height: 46px;
    }

    .tt-page-qty-btn {
        width: 38px;
    }

    .tt-filter-bar {
        margin-bottom: 30px;
        gap: 8px;
    }

    .tt-filter-btn {
        font-size: 12px;
        padding: 7px 15px 6px;
    }

    /* Product detail — JS-rendered section */
    #tt-product-detail h1 {
        font-size: 2rem !important;
        line-height: 2.2rem !important;
        letter-spacing: 0 !important;
    }

    #tt-detail-price {
        font-size: 1.8rem !important;
    }

    /* Trust badges: tighter gap on mobile */
    .tt-trust-badges-row {
        gap: 16px !important;
    }

    /* Product page section spacing */
    #tt-product-detail .col-lg-6 {
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    #tt-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    #tt-related-products {
        grid-template-columns: 1fr;
    }

    .tt-product-info-col {
        margin-top: 25px;
    }

    .tt-page-hero .hero-img-col {
        min-height: 220px;
    }

    .tt-page-hero .hero-text-col {
        padding-top: 50px;
        padding-bottom: 20px;
        align-items: center;
        text-align: center;
    }

    .tt-trust-badges {
        padding-top: 18px;
    }

    .tt-trust-badge {
        font-size: 12px;
    }

    .tt-trust-badge i {
        font-size: 16px;
    }

    .tt-product-tabs .nav-tabs .nav-item {
        flex: 1;
    }

    .tt-product-tabs .nav-tabs .nav-link {
        font-size: 12px;
        padding: 10px 8px;
        text-align: center;
        white-space: nowrap;
    }

    .tt-contact-form .form-control {
        padding: 12px 14px;
        font-size: 14px;
    }

    .tt-ingredient-detail {
        padding: 20px 18px;
    }

    .tt-value-card {
        padding: 20px 18px;
    }

    .tt-mission-number {
        font-size: 3rem;
    }

    /* About — quality image: remove offset on small phones */
    .col-6.mt-5 {
        margin-top: 0 !important;
    }

    .tt-contact-info-item {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    /* Product detail — JS-rendered section */
    #tt-product-detail h1 {
        font-size: 1.7rem !important;
        line-height: 2rem !important;
    }

    #tt-detail-price {
        font-size: 1.6rem !important;
    }

    /* Qty + Add to Cart: stack vertically */
    .tt-atc-row {
        flex-direction: column;
        align-items: stretch !important;
    }

    .tt-qty-box {
        width: 100%;
        justify-content: center;
    }

    #tt-detail-add-cart {
        width: 100%;
        text-align: center;
    }

    /* Trust badges: stack vertically */
    .tt-trust-badges-row {
        flex-direction: column;
        gap: 12px !important;
    }

    /* Save badge wrapping */
    #tt-product-detail .border-radius-26px {
        font-size: 10px;
    }
}

@media (max-width: 479px) {
    #tt-products-grid {
        grid-template-columns: 1fr;
    }

    #tt-related-products {
        grid-template-columns: 1fr;
    }

    .tt-page-hero .hero-img-col {
        min-height: 200px;
    }

    .tt-page-hero .hero-text-col {
        padding-top: 40px;
        padding-bottom: 15px;
        align-items: center;
        text-align: center;
    }

    .tt-thumb {
        width: 56px;
        height: 56px;
    }

    .tt-qty-box {
        height: 42px;
    }

    .tt-page-qty-btn {
        width: 34px;
        font-size: 16px;
    }

    .tt-qty-field {
        width: 42px;
        font-size: 15px;
    }

    .tt-product-tabs .tab-content {
        padding: 25px 0;
        font-size: 15px;
    }

    .tt-ingredients-grid {
        gap: 12px;
    }

    .tt-ingredient-item {
        padding: 15px;
        gap: 10px;
    }

    .tt-ingredient-icon {
        width: 34px;
        height: 34px;
        flex-shrink: 0;
    }

    .tt-ingredient-icon i {
        font-size: 14px;
    }

    .tt-mission-number {
        font-size: 2.5rem;
    }

    .tt-contact-info-item .icon-wrap {
        width: 40px;
        height: 40px;
    }

    .tt-contact-info-item .icon-wrap i {
        font-size: 17px;
    }

    .tt-filter-bar {
        margin-bottom: 20px;
    }
}
