:root {
    --bg-color: #000000;
    --bg-card: #111111;
    --bg-overlay: rgba(0, 0, 0, 0.7);
    --accent-color: #FFD700;
    --accent-glow: rgba(255, 215, 0, 0.4);
    --text-white: #FFFFFF;
    --text-gray: #CCCCCC;
    --font-primary: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

.text-accent {
    color: var(--accent-color);
}

.text-outline {
    -webkit-text-stroke: 2px var(--accent-color);
    color: transparent;
}

/* Helper Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 0.9rem;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn--primary {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn--outline {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}

.btn--outline:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn--full {
    width: 100%;
    margin-top: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo--sm {
    font-size: 1.2rem;
}

.nav__list {
    display: flex;
    gap: 2rem;
}

.nav__link {
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
}

.nav__link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.icon-btn:hover {
    color: var(--accent-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-color);
    color: var(--bg-color);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    /* Ensure above nav-menu */
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s ease;
}

/* Active Hamburger */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-white);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-btn-account {
    color: var(--text-white);
    font-weight: 500;
}

.nav-btn-account:hover {
    color: var(--accent-color);
}


/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        /* Cover full screen or start from top */
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        transition: 0.3s ease;
        z-index: 1000;
        padding-top: 60px;
        /* Space for fixed header/hamburger */
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .nav-actions {
        margin-top: 30px;
        flex-direction: column;
        gap: 15px;
        display: flex;
        align-items: center;
    }
}

.mobile-toggle {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: -50;
    padding-bottom: 900px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    animation: zoomIn 20s infinite alternate;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.95));
    z-index: -1;
}

.hero__title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.2rem;
    }
}

.hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 480px) {
    .hero__btns {
        flex-direction: column;
        width: 100%;
        padding: 0 2rem;
    }

    .hero__btns .btn {
        width: 100%;
        text-align: center;
    }
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 30px;
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-gray);
    border-radius: 20px;
    position: relative;
    animation: bounce 2s infinite;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 2px;

}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Sections */
.section {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .section__header {
        margin-bottom: 2.5rem;
    }
}

.section__title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 480px) {
    .section__title {
        font-size: 2rem;
    }
}

.section__subtitle {
    color: var(--text-gray);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.product-card__image {
    aspect-ratio: 4 / 3;
    width: 100%;
    background-color: #222;
    position: relative;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.1);
}

.product-card__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    opacity: 0;
    z-index: 1;
    transition: var(--transition);
    pointer-events: none;
    /* Allow clicks to pass through */
}

.product-card:hover .product-card__image::before {
    opacity: 1;
}

.product-card__info {
    padding: 1.5rem;
}

.product-card__title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-card__desc {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    min-height: 40px;
}

.product-card__price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

/* Feature Section */
.feature__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature--dark {
    background-color: #050505;
}

.feature__container--reverse {
    direction: rtl;
}

.feature__container--reverse .feature__content {
    direction: ltr;
}

.feature__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature__text {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feature__list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature__image {
    height: 400px;
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature__image:hover img {
    transform: scale(1.05);
}

/* Newsletter Box */
.newsletter__box {
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    padding: 4rem;
    text-align: center;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.newsletter__box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    filter: blur(100px);
    opacity: 0.1;
}

.newsletter__title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter__text {
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter__form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter__form input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    border: 1px solid #333;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: inherit;
}

.newsletter__form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Footer */
.footer {
    background-color: #050505;
    padding: 4rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.grid-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 900px) {
    .grid-footer {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .grid-footer {
        grid-template-columns: 1fr;
    }

    .footer__col {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

.footer__text {
    color: var(--text-gray);
    margin: 1rem 0;
    max-width: 250px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--text-gray);
    font-size: 1.2rem;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.footer__heading {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer__links li {
    margin-bottom: 0.8rem;
}

.footer__links a {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer__links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer__bottom {
    background-color: #000000;
    padding: 1.5rem 0;
    text-align: center;
    color: #555;
    font-size: 0.8rem;
}

/* Modal */
.modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.modal.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.modal__content {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    width: 350px;
    max-width: 90%;
    border: 1px solid var(--accent-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    text-align: center;
}

.modal__close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal__title {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.modal__content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.modal__form input {
    width: 100%;
    padding: 0.8rem;
    border-radius: 5px;
    border: 1px solid #333;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    margin-bottom: 0.5rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .header__container {
        padding: 0 1.5rem;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #111;
        padding: 2rem;
        transform: translateY(-100%);
        transition: var(--transition);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
    }

    .mobile-toggle {
        display: block;
    }

    .hero__title {
        font-size: 3rem;
    }

    .feature__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .grid-footer {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter__form {
        flex-direction: column;
    }

    .feature__container--reverse {
        direction: ltr;
    }
}

/* Reviews Section */
.reviews-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background-color: transparent;
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 4rem 0;
    }
}

/* ... existing review styles ... */

/* Founder Section */
.founder-section {
    padding: 6rem 0;
    background-color: transparent;
    /* Enhance blending */
}

.founder-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.founder-row:last-child {
    margin-bottom: 0;
}

.founder-row--reverse {
    flex-direction: row-reverse;
}

.founder__image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /* Removed border and box-shadow if they were creating the "black container" look users disliked, 
       or keep them subtle. User said "black container make it blend", implying the card/container bg was visible. 
       The HTML structure doesn't have a container card, but maybe the image wrapper? 
       Let's clear the specific styles that look like a container. */
    border: none;
    box-shadow: none;
}

/* Adjusting Aspect Ratio and Fit */
.founder__image::before {
    content: '';
    display: block;
    padding-top: 100%;
    /* Keep square container */
}

.founder__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Changed from cover to contain to stop cropping hair */
    object-position: center bottom;
    /* Align to bottom so they stand on the edge */
    transition: transform 0.5s ease;
}

/* Removed zoom on hover that cuts hair */
.founder__image:hover img {
    transform: scale(1.02);
    /* Much subtler zoom */
}

.reviews__header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.reviews__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.reviews__text {
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Marquee Scroller */
.scroller {
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
    /* Removed mask-image to show full content at edges */
}

.scroller__inner {
    display: flex;
    gap: 2rem;
    width: max-content;
    flex-wrap: nowrap;
    align-items: center;
    /* Center items vertically if they have different heights */
}

.scroller[data-direction="right"] .scroller__inner {
    animation: scroll-right 40s linear infinite;
}

.scroller[data-direction="left"] .scroller__inner {
    animation: scroll-left 40s linear infinite;
}

.scroller:hover .scroller__inner {
    animation-play-state: paused;
}

.scroller__item {
    flex: 0 0 auto;
    width: 200px;
    /* Increased base width */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.scroller__item img {
    width: 100%;
    height: auto;
    display: block;
    /* Removed object-fit: cover and aspect-ratio to show full original image */
}

@keyframes scroll-left {
    to {
        transform: translate(calc(-50% - 1rem));
    }
}

@keyframes scroll-right {
    from {
        transform: translate(calc(-50% - 1rem));
    }

    to {
        transform: translate(0);
    }
}

/* Founder Section */
.founder-section {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .founder-section {
        padding: 4rem 0;
    }
}

.founder-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.founder-row:last-child {
    margin-bottom: 0;
}

.founder-row--reverse {
    flex-direction: row-reverse;
}

.founder__image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), transparent);
}

.founder__image--nobg {
    background: none;
    border: none;
    box-shadow: none;
    overflow: visible;
    /* Allow image to stick out if needed, though 'contain' keeps it in */
}

/* Adjusting Aspect Ratio and Fit */
.founder__image::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.founder__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* For the no-bg variant, we ensure it's contained and aligned bottom */
.founder__image--nobg img {
    object-fit: contain;
    object-position: center bottom;
    transform-origin: bottom center;
}

.founder__image:hover img {
    transform: scale(1.02);
}

.founder__image--nobg:hover img {
    transform: scale(1.05);
    /* Slightly more zoom for the cutout */
}

.founder__content {
    flex: 1;
}

.founder__role {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.founder__name {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.founder__bio {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .reviews__title {
        font-size: 1.8rem;
    }

    .scroller__item {
        width: 120px;
        /* Smaller width for mobile */
    }

    .founder-row,
    .founder-row--reverse {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .founder__image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Policy & FAQ Pages Styling */
.policy-content {
    max-width: 800px;
    margin: 4rem auto;
    color: #e0e0e0;
    padding: 0 1rem;
}

.policy-content h2 {
    color: var(--accent-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 0.5rem;
}

.policy-content h3 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.policy-content p,
.policy-content li {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.policy-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.policy-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: #fff;
    text-decoration: underline;
}

/* FAQ Specific Styles */
.faq-container {
    max-width: 800px;
    margin: 4rem auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.faq-question {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-answer {
    color: #ccc;
    line-height: 1.7;
    margin-left: 2rem;
    /* Indent answer slightly */
}

/* ============================= */
/*    PRODUCT PAGE STYLES        */
/* ============================= */

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.product-page-main {
    padding-top: 120px;
    padding-bottom: 4rem;
    min-height: 100vh;
}

.nav__link--active {
    color: var(--accent-color);
}

.nav__link--active::after {
    width: 100%;
}

.product-card__image {
    aspect-ratio: 4 / 3;
    width: 100%;
    background-color: #222;
    position: relative;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.1);
}