:root {
    --luxury-green: #1C3326;
    --champagne: #F9F6F0;
    --warm-charcoal: #2A2A2A;
    --muted-gold: #C5A880;
    --border-soft: #EAE5DC;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', sans-serif;
}

body {
    font-family: var(--font-sans);
    color: var(--warm-charcoal);
    margin: 0;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

/* header {
    margin-bottom: 4rem;
} */

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-soft);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.image-title {
    font-weight: 600;
    padding-bottom: 5px;
    font-size: 16px;
}

.phone-link {
    text-decoration: none;
    color: #53B155 !important;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
    margin-top: 10px;
}

.phone-link i {
    margin-right: 0.2rem;
    color: #53B155;
}

.pdp-container {
    max-width: 90%;
    margin: 4rem auto;
    margin-top: 0rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.pdp-gallery {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    top: 2rem;
}

.thumbnail-list {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-shrink: 0;
    margin-top: 10px;
}

.thumb {
    width: 65px;
    height: 85px;
    border: 1px solid var(--border-soft);
    background: var(--champagne);
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.thumb:hover img,
.thumb.active img {
    opacity: 1;
}

.thumb.active {
    border-color: var(--luxury-green);
    box-shadow: 0 4px 10px rgba(28, 51, 38, 0.1);
}

.main-image-frame {
    flex-grow: 1;
    background-color: var(--champagne);
    border: 1px solid var(--border-soft);
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.inner-matting {
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.main-image-frame img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.frame-caption {
    font-family: var(--font-serif);
    font-style: italic;
    color: #666;
    text-align: center;
    margin-top: 1.25rem;
    letter-spacing: 0.05em;
}

.frame-caption a {
    color: #53B155;
    font-weight: 900;
    text-decoration: none;
}

.footer-links li a::before {
    top: 0;
}

.botanical-name {
    font-family: var(--font-serif);
    font-style: italic;
    color: #53B155;
    font-size: 1.55rem;
    display: block;
    margin-bottom: 0.5rem;
}

.product-header h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    color: var(--luxury-green);
}

.price-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-soft);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    /* font-weight: 300; */
    margin: 0;
    letter-spacing: -0.02em;
    color: #53b155;
    font-weight: 600;
}

.inventory-status {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: #4A5D4E;
    background: #EAF2EC;
    padding: 0.4rem 0.8rem;
    border-radius: 2px;
}

.care-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.thumbnail {
    cursor: pointer;
}

.badge {
    border: 1px solid var(--border-soft);
    background: none;
    padding: 0.5rem 0.9rem;
    font-size: 1rem;
    letter-spacing: 0.02em;
    color: #555;
    text-transform: uppercase;
    font-weight: 500;
}

.short-description {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #555555;
    margin-bottom: 2.5rem;
}

.action-row {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--luxury-green);
    background: #ffffff;
}

.qty-btn {
    background: none;
    border: none;
    width: 45px;
    height: 100%;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--luxury-green);
}

.quantity-selector input {
    width: 35px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--luxury-green);
    background: transparent;
}

.add-to-cart-btn {
    flex: 1;
    background-color: #53B155;
    color: #ffffff;
    border: none;
    padding: 1.25rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #294937;
}

.btn-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.add-to-cart-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.care-tabs {
    margin-top: -50px;
    border-top: 1px solid var(--border-soft);
    width: 90%;
    padding: 10px;
    margin-left: 10%;
    padding-right: 30px;
}

details {
    border-bottom: 1px solid var(--border-soft);
    padding: 1.25rem 0;
}

summary {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

.accordion-icon::before {
    content: '+';
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 1.3rem;
    color: var(--muted-gold);
}

details[open] .accordion-icon::before {
    content: '−';
}

.tab-content {
    margin-top: 1rem;
    color: #666;
    font-size: 1.2rem;
    line-height: 1.8;
}

.tab-content ul {
    list-style: circle;
}

.site-footer {
    background-color: var(--champagne);
    border-top: 1px solid var(--border-soft);
    padding: 4rem 2rem 2rem 2rem;
}

.footer-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    padding-bottom: 3rem;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.footer-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.footer-links-column h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    margin: 0 0 1.25rem 0;
    color: var(--luxury-green);
    letter-spacing: 0.05em;
    font-weight: 900;
}

.footer-links-column ul li a {
    display: block;
    text-decoration: none;
    color: #666;
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
    transition: color 0.2s ease;
}

.footer-links li a:before {
    content: "-";
    position: absolute;
    margin: 0px -15px;
    color: #666;
}

.footer-links-column ul li a:hover {
    color: #53B155;
}

.footer-links-column .social-icons {
    list-style: none;
    display: flex;
    padding: 0;
}

.footer-links-column .social-icons li a i {
    font-size: 1.6rem;
    color: #666;
    transition: color 0.2s ease;
}

.footer-links-column .social-icons li a i:hover {
    color: #53B155;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    border-top: 1px solid var(--border-soft);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    margin: 0;
    letter-spacing: 0.05em;
}


@media (max-width: 1024px) {
    .pdp-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }

    .footer-container {
        display: grid;
        gap: 3rem;
    }

    .footer-brand-column {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    section {
        padding: 25px 0;
        margin-top: -80px;
    }
    .pdp-container {
        margin-top: 5rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.5rem 1rem;
        text-align: center;
    }

    .header-nav {
        display: flex;
        gap: 1.5rem;
        width: 100%;
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .header-nav::-webkit-scrollbar {
        display: none;
    }

    .header-nav a {
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .header-contact {
        align-items: center;
    }

    .pdp-gallery {
        flex-direction: column-reverse;
        gap: 1.25rem;
    }

    .thumbnail-list {
        flex-direction: row;
        overflow-x: auto;
        justify-content: flex-start;
        width: 100%;
        padding-bottom: 0.5rem;
    }

    .thumb {
        width: 75px;
        height: 75px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .product-header h1 {
        font-size: 2rem;
    }

    .pdp-container {
        padding: 2rem 0.6rem;
    }

    .botanical-name {
        font-size: 1.2rem;
    }

    .price {
        font-size: 1.75rem;
    }

    .inventory-status {
        font-size: 0.6rem;
    }

    .badge {
        font-size: 0.85rem;
    }

    .short-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .action-row {
        flex-direction: column;
        gap: 1rem;
    }

    .quantity-selector {
        justify-content: center;
        width: 100%;
        height: 50px;
    }

    .add-to-cart-btn {
        width: 100%;
        justify-content: center;
        gap: 1rem;
        padding: 1rem;
    }

    .tab-content {
        font-size: 1rem;
    }
}