/* ============================================
   DogLuck カスタムスタイル
   Version: 1.2.0 (2026-03-13 dogluck.jp対応)
   対象テーマ: harves_tcd118
============================================ */

/* ============================================
   Google Fonts
============================================ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS Variables (Design Tokens)
============================================ */
:root {
    --color-forest: #1B3D2F;
    --color-snow: #FAFAFA;
    --color-ink: #2D2D2D;
    --color-amber: #B8860B;
    --color-mist: #E8E4E0;
    --color-silver: #A0A0A0;
    --color-gold: #C9A227;
    --gradient-silver: linear-gradient(135deg, #D0D0D0 0%, #909090 25%, #B8B8B8 50%, #808080 75%, #D0D0D0 100%);
    --gradient-gold: linear-gradient(135deg, #E8C84A 0%, #D4AF37 20%, #B8962E 40%, #9A7B1E 50%, #B8962E 60%, #D4AF37 80%, #E8C84A 100%);
    --font-primary: 'Noto Serif JP', serif;
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;
}

/* ============================================
   Base Styles
============================================ */
body {
    font-family: var(--font-primary);
    color: var(--color-ink);
    background-color: var(--color-snow);
    line-height: 1.8;
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    width: 90%;
    max-width: 800px;
}

.hero-catchcopy {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    color: var(--color-gold);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.8;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-brand {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 500;
    color: var(--color-gold);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.2em;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-button {
    display: inline-block;
    padding: 18px 50px;
    border: 2px solid var(--color-gold);
    background: transparent;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
    color: var(--color-gold);
}

.hero-button span {
    color: var(--color-gold);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-button:hover {
    background: rgba(201, 162, 39, 0.2);
    border-color: #E8C84A;
}

.hero-catchcopy.animate,
.hero-brand.animate,
.hero-button.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero-catchcopy.animate {
    transition: opacity 1.8s ease-out, transform 1.8s ease-out;
}

.hero-brand.animate {
    transition: opacity 1.8s ease-out, transform 1.8s ease-out;
}

.hero-button.animate {
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

/* ============================================
   SECTION: 3 Commitments（3つのこだわり）
============================================ */
.commitments-section {
    background-color: var(--color-snow);
    padding: var(--section-padding) 20px;
}

.commitments-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 500;
    color: var(--color-forest);
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 60px;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.commitment-item {
    text-align: center;
}

.commitment-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin-bottom: 25px;
}

.commitment-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-forest);
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.commitment-text {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-ink);
    line-height: 1.9;
}

/* ============================================
   SECTION: Brand Message
============================================ */
.brand-message-section {
    background-color: var(--color-snow);
    padding: 60px 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.brand-message-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: var(--gradient-gold);
}

.brand-message-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: var(--gradient-gold);
}

.brand-message-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.brand-message-title {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 500;
    color: var(--color-gold);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    line-height: 1.6;
}

.brand-message-text {
    font-family: var(--font-primary);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: #707070;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 2.2;
    letter-spacing: 0.05em;
}

/* ============================================
   SECTION: Product Lineup（商品ラインナップ）
============================================ */
.products-section {
    background-color: var(--color-mist);
    padding: var(--section-padding) 20px;
}

.products-inner {
    max-width: 1200px;
    margin: 0 auto;
}

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

.product-card {
    background: #fff;
    text-align: center;
    text-decoration: none;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-ink);
    margin-bottom: 10px;
}

.product-price {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--color-amber);
    font-weight: 500;
}

.products-more {
    text-align: center;
    margin-top: 50px;
}

.products-more-button {
    display: inline-block;
    padding: 15px 45px;
    border: 1px solid var(--color-forest);
    color: var(--color-forest);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all var(--transition-base);
}

.products-more-button:hover {
    background: var(--color-forest);
    color: #fff;
}

/* ============================================
   SECTION: CTA
============================================ */
.cta-section {
    position: relative;
    padding: 120px 20px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.15em;
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--color-gold);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all var(--transition-base);
}

.cta-button:hover {
    background: #9A7B1E;
    transform: translateY(-2px);
}

/* ============================================
   Scroll Animation
============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Styles (TOP Page)
============================================ */
@media (max-width: 1024px) {
    .commitments-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .hero-content {
        width: 85%;
    }

    .commitments-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .cta-section {
        background-attachment: scroll;
        padding: 80px 20px;
    }

    .brand-message-section::before,
    .brand-message-section::after {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-button {
        padding: 15px 35px;
        font-size: 0.9rem;
    }
}

/* ============================================
   ABOUT PAGE STYLES
============================================ */

.about-section .fade-in-up,
.about-cta .fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.about-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.about-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
}

.about-hero-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.15em;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.1em;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.about-section {
    padding: 80px 20px;
}

.about-intro,
.about-quality {
    background-color: var(--color-snow);
}

.about-howto {
    position: relative;
    background-image: url('https://dogluck.jp/wp-content/uploads/dogluck/about_section3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.about-howto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.about-howto .about-section-inner {
    position: relative;
    z-index: 2;
}

.about-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content-wrapper.about-content-wide {
    gap: 80px;
}

.about-content-wrapper.reverse {
    direction: rtl;
}

.about-content-wrapper.reverse > * {
    direction: ltr;
}

.about-content-wrapper.about-content-reverse {
    direction: rtl;
}

.about-content-wrapper.about-content-reverse > * {
    direction: ltr;
}

.about-image-block {
    overflow: visible;
}

.about-section-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.about-section-image:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.about-text-block {
    padding: 20px 0;
}

.about-section-title {
    font-family: var(--font-primary);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 500;
    color: var(--color-silver);
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.08em;
    margin-bottom: 25px;
    line-height: 1.5;
}

.about-section-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-ink);
    line-height: 2;
    letter-spacing: 0.03em;
}

.about-specs {
    background: var(--color-mist);
}

.about-specs .about-section-title {
    text-align: left;
}

.about-section-title-center {
    font-family: var(--font-primary);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 500;
    color: var(--color-silver);
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.08em;
    margin-bottom: 40px;
    line-height: 1.5;
    text-align: center;
}

.about-howto .about-section-title-center {
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #fff;
    background-clip: unset;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.about-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.about-card-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-forest);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-gold);
}

.about-card-text {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-ink);
    line-height: 1.9;
}

.about-card-note {
    font-size: 0.85rem;
    color: #666;
    display: block;
    margin-top: 10px;
}

.about-portion-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.portion-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
}

.portion-weight {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-ink);
}

.portion-amount {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-forest);
}

.about-products {
    background-color: var(--color-snow);
}

.about-product-item {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.about-product-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.about-product-item.reverse {
    grid-template-columns: 1fr 280px;
}

.about-product-item.reverse .about-product-image {
    order: 2;
}

.about-product-item.reverse .about-product-text {
    order: 1;
}

.about-product-image {
    overflow: hidden;
    border-radius: 8px;
}

.about-product-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-product-img:hover {
    transform: scale(1.03);
}

.about-product-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-forest);
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.about-product-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-product-list li {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-ink);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.about-product-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
}

.about-cta {
    position: relative;
    background-image: url('https://dogluck.jp/wp-content/uploads/dogluck/cta_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 20px;
    text-align: center;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.about-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.about-cta-title {
    font-family: var(--font-primary);
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

.about-cta-button {
    display: inline-block;
    padding: 16px 50px;
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all var(--transition-base);
}

.about-cta-button:hover {
    background: var(--color-gold);
    color: #fff;
}

/* ============================================
   Responsive (About Page)
============================================ */
@media (max-width: 900px) {
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content-wrapper.reverse,
    .about-content-wrapper.about-content-reverse {
        direction: ltr;
    }

    .about-content-wrapper.about-content-wide {
        gap: 40px;
    }

    .about-section {
        padding: 60px 20px;
    }

    .about-image-block {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-product-item,
    .about-product-item.reverse {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .about-product-item.reverse .about-product-image,
    .about-product-item.reverse .about-product-text {
        order: unset;
    }

    .about-product-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .about-product-list {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .about-hero {
        height: 50vh;
        min-height: 300px;
    }

    .about-section {
        padding: 50px 20px;
    }

    .about-cta {
        background-attachment: scroll;
        padding: 60px 20px;
    }

    .portion-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* ============================================
   ヒーローページ: 上部余白・パンくず除去
   対象: TOPページ / カムイジャーキーについて
============================================ */

/* l-container の上部余白を除去（ヒーローページ共通） */
.front-page-hero .l-container,
.page-kamuy-jerky .l-container {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* TOPページ: コンテンツエリアの上部余白を除去 */
.front-page-hero #contents,
.front-page-hero #main,
.front-page-hero .l-contents,
.front-page-hero .l-main__content,
.front-page-hero .entry-content,
.front-page-hero .page-content,
.front-page-hero article {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* カムイジャーキーページ: コンテンツエリアの上部余白を除去 */
.page-kamuy-jerky #contents,
.page-kamuy-jerky #main,
.page-kamuy-jerky .l-contents,
.page-kamuy-jerky .l-main__content,
.page-kamuy-jerky .entry-content,
.page-kamuy-jerky .page-content,
.page-kamuy-jerky article {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* カムイジャーキーページ: パンくずリストを非表示 */
.page-kamuy-jerky .c-breadcrumb,
.page-kamuy-jerky .p-breadcrumb,
.page-kamuy-jerky #breadcrumb,
.page-kamuy-jerky .breadcrumbs,
.page-kamuy-jerky nav.breadcrumb {
    display: none !important;
}

/* ============================================
   スクロールバーギャップ対策
============================================ */
html {
    overflow-x: hidden;
}

/* ============================================
   TOPページ: 全セクション全幅表示
============================================ */
.front-page-hero .commitments-section,
.front-page-hero .brand-message-section,
.front-page-hero .products-section,
.front-page-hero .cta-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* ============================================
   カムイジャーキーページ: 全セクション全幅表示
============================================ */
.page-kamuy-jerky .about-section,
.page-kamuy-jerky .about-cta {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* ============================================
   レスポンシブ補完: ヒーローセクション (TOPページ)
============================================ */
@media (max-width: 768px) {
    .hero-section {
        height: 75vh;
        min-height: 450px;
    }

    .brand-message-section {
        padding: 60px 30px;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 65vh;
        min-height: 380px;
    }

    .products-grid {
        gap: 15px;
    }

    .commitment-item {
        padding: 0 10px;
    }
}

/* ============================================
   レスポンシブ補完: カムイジャーキーページ (<480px)
============================================ */
@media (max-width: 480px) {
    .about-section {
        padding: 40px 15px;
    }

    .about-content-wrapper {
        gap: 20px;
    }

    .about-cards {
        gap: 15px;
    }

    .about-product-item {
        gap: 15px;
    }

    .about-product-image {
        max-width: 200px;
    }

    .about-cta-button {
        padding: 14px 35px;
        font-size: 0.9rem;
    }

    .about-card {
        padding: 25px 20px;
    }
}
