/* =========================
   Global Styles & Resets
   ========================= */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevent scrollbars */
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #102d19; /* Dark green background */
    color: #e0f2e9;      /* Light text for contrast */
}

/* =========================
   Main Container Layout
   ========================= */
.main-container {
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

/* =========================
   Sidebar Navigation
   ========================= */
.sidebar {
    width: 330px;
    min-width: 220px;
    max-width: 400px;
    background: #183c25; /* Slightly lighter dark green */
    color: #e0f2e9;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    z-index: 2;
    box-shadow: 2px 0 8px rgba(0,0,0,0.15);
}

/* =========================
   Sidebar Navigation Styling
   ========================= */
.sidebar-nav {
    padding-top: 2.5rem; /* Adjust this value as needed for desired spacing */
}

.sidebar-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-nav li {
    margin-bottom: 0.75rem;
}

.sidebar-nav a {
    display: block;
    color: #e0f2e9; /* Light green for contrast */
    text-decoration: none;
    font-size: 1.15rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.sidebar-nav a:hover,
.sidebar-nav a:focus {
    background: #245c38;
    color: #fff;
    outline: none;
}

@media (max-width: 900px) {
    .sidebar-nav a {
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
    }
    .sidebar-nav li {
        margin-bottom: 0.5rem;
    }
}

/* =========================
   Content Area
   ========================= */
.content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

/* =========================
   Header
   ========================= */
.header {
    background: #2e5c3a; /* Contrasting green */
    color: #fff;
    padding: 1.2rem 0;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.site-title {
    margin: 0;
    font-size: 2rem;
    letter-spacing: 0.1em;
    text-align: center;
}

/* =========================
   Canvas Area
   ========================= */
.canvas {
    flex: 1;
    background: #14301d;
    margin: 0 16px 0 16px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    overflow: hidden; /* Default: prevent scrollbars */
    padding: 2rem;
    min-height: 0;

    /* Center content */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Allow scrolling for pages that need it */
.canvas:has(.history-page) {
    overflow-y: auto;
    align-items: flex-start;
}

/* =========================
   Footer
   ========================= */
.footer {
    background: #2e5c3a; /* Contrasting green */
    color: #fff;
    text-align: center;
    padding: 0.8rem 0;
    flex-shrink: 0;
    font-size: 1rem;
    letter-spacing: 0.05em;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
}

/* =========================
   Sidebar toggle button
   ========================= */
.sidebar-toggle {
    display: none;
    position: absolute;
    left: 8px;
    top: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    z-index: 3;
    cursor: pointer;
}

@media (max-width: 900px) {
    .sidebar-toggle {
        display: block;
        top: 60%;
        left: 12px;
        transform: translateY(-50%);
    }
    .header {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .site-title {
        max-width: 320px;
        line-height: 1.2;
        white-space: normal;
    }
}

/* =========================
   Sidebar overlay for mobile
   ========================= */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.sidebar.active ~ .sidebar-overlay {
    display: block;
}


/* =========================
   Base Page Styling
   ========================= */
.base-page {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 1rem 3rem 1.5rem 3rem; /* Reduced top padding */
    margin: 0 0 24px 0; /* Bottom margin to lift card above footer */
    width: 100%;
    min-height: 70vh;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

/* Optional: add a small gap around the card for aesthetics */
.canvas {
    /* ...existing styles... */
    padding: 2rem;
    /* Add a small gap so the card doesn't touch the canvas edge */
}

/* Responsive adjustment for small screens */
@media (max-width: 900px) {
    .base-page {
        padding: 1.2rem 0.5rem;
    }
}

@media (max-width: 600px) {
    .canvas {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    .header {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

/* =========================
   Responsive Design
   ========================= */
@media (max-width: 900px) {
    .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        width: 260px;
        transform: translateX(-100%);
        box-shadow: 2px 0 12px rgba(0,0,0,0.18);
    }
    .sidebar.active {
        transform: translateX(0);
    }
    .main-container {
        flex-direction: column;
    }
    .content-area {
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    html, body,
    .main-container,
    .content-area,
    .canvas {
        overflow: visible !important;
        height: auto !important;
        min-height: 100vh;
    }
    .header {
        padding: 0.7rem 0.85rem;
    }
    .site-title {
        font-size: 1.15rem;
        letter-spacing: 0.06em;
    }
    .gallery-grid,
    .products-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 0.7rem;
    }
    .header, .footer {
        font-size: 0.95rem;
        padding: 0.7rem 0;
    }
    .canvas {
        margin: 8px 4px 0 4px;
        padding: 1rem;
    }
}

/* =========================
   Utility Classes (optional)
   ========================= */
/* .hide-scrollbar for canvas if needed */
.hide-scrollbar {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
}
.hide-scrollbar::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Webkit */
}

/* =========================
   Home Page Specific Styles
   ========================= */
.home-page {
    flex-direction: row; /* Side by side */
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem !important;
    display: flex;
    flex: 1 1 auto;
    height: 100%;
    margin-top: 16px; /* Moves home card down slightly */
}

.home-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 2rem;
    min-width: 0;
}

.home-page .home-title {
    color: #205c30;
    text-align: left;
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    width: 100%;
    display: block;
}

.home-page .page-content {
    text-align: left;
    color: #205c30;
    font-size: 1.15rem;
    margin-top: 0; /* No extra space above */
}

.home-page .page-content p {
    margin-top: 0;    /* Remove default paragraph top margin */
    margin-bottom: 0; /* Remove default paragraph bottom margin */
}

.home-page .home-hero-img {
    flex: 0 0 auto;
    align-self: flex-end;
    width: 70%;
    max-width: 700px;
    height: 100%;
    max-height: 850px;
    object-fit: contain;
    margin: 0.5rem 0 1rem 0;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(32,92,48,0.12);
    display: block;
}

.desktop-hero {
    display: block !important;
}

.mobile-hero {
    display: none !important;
}

/* Mobile tweaks without affecting desktop */
@media (max-width: 900px) {
    .home-page {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        gap: 1rem;
    }
    .home-content {
        padding-right: 0;
        align-items: center;
    }
    .home-page .home-title,
    .home-page .page-content {
        text-align: center;
    }
    .home-page .home-hero-img {
        width: 100%;
        max-width: 100%;
        height: auto;
        align-self: center;
        margin: 0 0 1rem 0;
    }
    .desktop-hero {
        display: none !important;
    }
    .mobile-hero {
        display: block !important;
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 0 1rem 0;
    }
}

.sidebar-menu-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #e0f2e9;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
    margin-top: 0.5rem;
    text-align: left;
    padding-left: 1.5rem; /* Align with nav links */
    line-height: 1.2;
}

/* =========================
   About Page Specific Styles
   ========================= */
.about-page {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1rem 3rem;
    display: flex;
    flex: 1 1 auto;
    height: 100%;
    margin-top: 16px;
}

.about-content {
    width: 100%;
    max-width: 800px;
    color:darkgreen ;
    text-align: left;
    margin: 0 auto;
    padding: 0;
}

.about-page .about-title {
    color:darkgreen;
    text-align:center;
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    width: 100%;
    display: block;
}

.about-page .page-content {
    color:darkgreen;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.about-page img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

@media (max-width: 900px) {
    .about-page {
        padding: 0.8rem 1.5rem;
    }
    .about-page .about-title {
        font-size: 1.4rem;
    }
    .about-page .page-content {
        font-size: 1rem;
    }
}
/* =========================
   contact Page Specific Styles
   ========================= */
.contact-page {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1rem 3rem;
    display: flex;
    flex: 1 1 auto;
    height: 100%;
    margin-top: 16px;
}

.contact-page {
    padding-top: 0 !important; /* Remove top padding */
}

.contact-content {
    margin-top: 0 !important;  /* Remove any top margin */
    padding-top: 0 !important;
}

.contact-title {
    margin-top: 0 !important;
    margin-bottom: 0.1rem;
}

.contact-subtitle {
    margin-top: 0 !important;
    margin-bottom: 0.5em;
}

.contact-wrapper {
    margin-top: 0 !important;  /* Remove any top margin */
    padding-top: 0 !important;
}

.contact-form-section,
.contact-info-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.contact-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.contact-title {
    color: #205c30;
    font-size: 2.2rem;
    margin-top: 0.1rem; /* Move heading closer to the top */
    margin-bottom: 0.1rem; /* Reduce space below heading */
    text-align: center;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 1.15rem;
    opacity: 0.95;
    text-align: center;
    margin-top: 0; /* Remove any extra space above */
    margin-bottom: 0.7em; /* Reduce space below subtitle */
    color: #205c30;
}

.contact-wrapper {
    display: flex;
    flex-direction: row;
    gap: 2em;
    width: 100%;
}

.contact-form-section,
.contact-info-section {
    flex: 1 1 0;
    padding: 0.1em 0.1em;
}

.contact-form-section h3,
.contact-info-section h3 {
    color: #205c30;
    font-size: 1.2rem;
    margin-bottom: 0.7em;
}

.form-group {
    margin-bottom: 0.8em;
}
.form-group label {
    display: block;
    margin-bottom: 0.1em;
    font-weight: 500;
    color: #205c30;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.5em;
    border: 1px solid #b2c8b2;
    border-radius: 6px;
    font-size: 1rem;
    background: #f8faf8;
    color: #183c25;
    resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #205c30;
    outline: none;
}
.contact-form textarea {
    min-height: 6.2em;
    max-height: 6.5em;
    height: 6.2em;
}
.submit-btn {
    background: #205c30;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.7em 1.5em;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5em;
}
.submit-btn:hover,
.submit-btn:focus {
    background: #183c25;
}
.contact-info .info-item {
    background: #f4f4f4;
    border-radius: 8px;
    padding: 1.2em 0.7em;
    margin-bottom: 1.2em;
    font-size: 1.05em;
    min-height: 3.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #205c30;
}
.contact-info .info-item:last-child {
    margin-bottom: 0;
}
.contact-info .info-item h4 {
    margin: 0 0 0.2em 0;
    font-size: 1em;
    color: #205c30;
}
.contact-info .info-item p {
    margin: 0;
}
.contact-info a {
    color: #205c30;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .contact-wrapper {
        gap: 1em;
    }
}
@media (max-width: 700px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 0.7em;
    }
    .contact-content {
        padding: 0 0.5em;
    }
}
@media (max-width: 600px) {
    .contact-title {
        font-size: 1.5rem;
    }
}
.contact-send-btn-row {
    display: flex;
    justify-content: flex-start; /* Left align the button */
    margin-top: 1.2em;
    width: 100%;
}

/* =========================
   Gallery Page Specific Styles
   ========================= */
.gallery-page {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 1rem 0;
    box-sizing: border-box;
}

.gallery-cell {
    background: #f8faf8;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(32,92,48,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    min-width: 0;
    min-height: 0;
}

.gallery-cell-footer {
    font-size: 0.98rem;
    color: #183c25;
    text-align: center;
    margin-top: 0.5rem;
}

.gallery-cell-header {
    font-size: 1rem;         /* Slightly smaller text */
    font-weight: 600;
    color: #205c30;
    margin-bottom: 0.2rem;   /* Less space below header */
    margin-top: 0;           /* Remove any top margin if present */
    text-align: center;
    line-height: 1.1;        /* Tighter line height */
}

.gallery-img {
    width: 100%;
    height: 180px;         /* Fixed height for all images */
    max-width: 100%;
    object-fit: cover;     /* Ensures images fill the area and are cropped if needed */
    border-radius: 6px;
    margin-bottom: 0.5rem;
    background: #e0f2e9;
    display: block;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 1fr);
        gap: 1rem;
    }
}
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 0.7rem;
    }
    .gallery-img {
        max-width: 100%;
        max-height: 160px;
    }
}

/* =========================
   Products Page Specific Styles
   ========================= */
.products-page {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 1rem 0;
    box-sizing: border-box;
}

.products-cell {
    background: #f8faf8;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(32,92,48,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    min-width: 0;
    min-height: 0;
}

.products-cell-header {
    font-size: 1rem;
    font-weight: 600;
    color: #205c30;
    margin-bottom: 0.2rem;
    margin-top: 0;
    text-align: center;
    line-height: 1.1;
}

.products-img {
    width: 100%;
    height: 180px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    background: #e0f2e9;
    display: block;
}

.products-cell-footer {
    margin-top: 0.1rem; /* Reduce space above footer if needed */
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.products-cell-btn {
    width: 100%;
    background: #205c30;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.9em 0;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    text-decoration: none;
    /* Move button up by reducing or removing margin-top */
    margin-top: 0.1em; /* Previously 0.5em, now less */
    margin-bottom: 0;
    display: block;
}
.products-cell-btn:hover,
.products-cell-btn:focus {
    background: #183c25;
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 1fr);
        gap: 1rem;
    }
}
@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 0.7rem;
    }
    .products-img {
        max-width: 100%;
        max-height: 160px;
    }
}

/* =========================
   Video Demo Page Styles
   ========================= */
.video-demo-page {
    padding: 1rem 3rem 2rem 3rem; /* Reduced top padding to move content up */
}

.video-demo-title {
    color: #205c30;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 0; /* Remove top margin to move title up */
    margin-bottom: 1rem; /* Reduced bottom margin */
    text-align: center;
}

.video-demo-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.video-wrapper {
    width: 100%;
    max-width: 1000px; /* Increased from 800px */
    background: #f8faf8;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(32,92,48,0.10);
}

.demo-video {
    width: 100%;
    min-height: 500px; /* Added minimum height for larger video */
    border-radius: 8px;
    display: block;
    background: #000;
}

.video-controls {
    margin-top: 2rem; /* Increased from 1rem to move button down */
    text-align: center;
}

.play-pause-btn {
    background: #205c30;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.8em 2em;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.play-pause-btn:hover,
.play-pause-btn:focus {
    background: #183c25;
}

.video-description {
    max-width: 1000px; /* Increased from 800px to match video width */
    color: #205c30;
    line-height: 1.6;
}

.video-description h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #205c30;
}

.video-description ul {
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.video-description li {
    margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
    .video-demo-page {
        padding: 1rem 1rem 1.5rem 1rem;
    }
    .video-demo-title {
        font-size: 1.5rem;
    }
    .video-wrapper {
        max-width: 100%;
    }
    .demo-video {
        min-height: 300px;
    }
}

/* =========================
   History Page Styles
   ========================= */
.history-page {
    padding: 0.5rem 3rem 2rem 3rem; /* Reduced top padding from 2rem to 0.5rem */
    width: 100%;
    max-width: 900px;
    overflow: visible; /* Allow content to flow */
}

.history-title {
    color: darkgreen;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 0; /* Remove top margin */
    margin-bottom: 0.8rem; /* Reduced from 1.5rem to bring text closer */
    text-align: center;
}

.history-content {
    max-width: 800px;
    margin: 0 auto;
    color: darkgreen;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
    padding-bottom: 2rem;
}

.history-content p {
    margin-top: 0; /* Remove top margin from paragraph */
    margin-bottom: 1rem;
    white-space: pre-line; /* Preserve line breaks */
}

@media (max-width: 900px) {
    .history-page {
        padding: 0.5rem 1rem 1.5rem 1rem; /* Reduced top padding for mobile too */
    }
    .history-title {
        font-size: 1.8rem;
    }
    .history-content {
        font-size: 1rem;
    }
}

/* =========================
   Product Detail Page Styles
   ========================= */
.product-detail-page {
    /* Inherits from .base-page, but you can add overrides here if needed */
    padding: 2rem 3rem 2.5rem 3rem;
    margin: 0 0 24px 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 70vh;
    max-width: 100%;
    box-sizing: border-box;
}

.product-detail-title {
    color: darkgreen; /* Changed from #205c30 */
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    margin-top: 0.2rem;
    letter-spacing: 0.04em;
    text-align: left;
}

.product-detail-content {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
    width: 100%;
}

.product-detail-image {
    flex: 0 0 320px;
    max-width: 320px;
    display: flex;
    align-items: flex-start;
}

.product-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(32,92,48,0.10);
    background: #e0f2e9;
    object-fit: cover;
    display: block;
}

.product-detail-description {
    flex: 1 1 0;
    color: darkgreen; /* Changed from #205c30 */
    font-size: 1.1rem;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-detail-description h3,
.product-detail-description h4 {
    color: darkgreen; /* Added to ensure headings are dark green */
}

.product-detail-description ul {
    margin-top: 0.7em;
    margin-bottom: 0;
    padding-left: 1.2em;
}

.product-detail-description li {
    margin-bottom: 0.4em;
}

/* Responsive adjustments for product detail page */
@media (max-width: 900px) {
    .product-detail-page {
        padding: 1.2rem 0.5rem;
    }
    .product-detail-title {
        font-size: 1.3rem;
    }
    .product-detail-content {
        flex-direction: column;
        gap: 1.2rem;
    }
    .product-detail-image {
        max-width: 100%;
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 600px) {
    .product-detail-page {
        padding: 0.7rem 0.2rem;
    }
    .product-detail-title {
        font-size: 1.1rem;
    }
    .product-detail-content {
        gap: 0.7rem;
    }
    .product-detail-image img {
        max-width: 100%;
        max-height: 180px;
    }
}