/* Font Face Declarations */
@font-face {
    font-family: 'AvenirNextLTPro-Regular';
    src: url('../fonts/AvenirNextLTPro-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'AvenirNextLTPro-Medium';
    src: url('../fonts/AvenirNextLTPro-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #666;
    --accent-color: #333;
    --light-gray: #f5f5f5;
    --border-color: #e8e8e8;
    --white: #ffffff;
}

body {
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #222222;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    padding-top: 95px;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    font-size: 14px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Site Header - Exact match to mikaeljansson.com */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 1000;
    padding: 21px 20px 0;
    text-align: center;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 1000;
    padding: 21px 20px 0;
    text-align: center;
}

.site-nav {
    display: block;
    text-align: center;
    padding-bottom: 15px;
}

.site-nav h3 {
    display: block;
    margin: 0;
    margin-top: -12px;
    margin-bottom: 13px;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
}

.site-nav h3 a {
    font-family: AvenirNextLTPro-Regular, Helvetica, Arial, sans-serif;
    color: rgb(121, 121, 121);
    text-decoration: none;
    font-size: 21px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 21px;
    margin: 12px 0 0;
    margin-left: 6px;
    transition: color 0.2s;
    white-space: nowrap;
    display: inline-block;
}

.site-nav h3 a.site-logo,
.site-nav h3 a:first-child {
    font-family: AvenirNextLTPro-Regular, Helvetica, Arial, sans-serif;
    color: rgb(34, 34, 34);
    font-size: 21px;
    font-weight: 400;
    line-height: 21px;
    margin: 12px 0 0;
    margin-left: 0;
}

.site-nav h3 a:hover,
.site-nav h3 a.active {
    color: rgb(34, 34, 34);
}

.search-bar {
    text-align: center;
    padding-bottom: 18px;
}

.search-bar .search-input {
    font-family: AvenirNextLTPro-Regular, Helvetica, Arial, sans-serif;
    font-size: 21px;
    color: rgb(121, 121, 121);
    background: rgb(255, 255, 255);
    border: none;
    text-align: center;
    width: 5px;
    padding: 1px 2px;
    outline: none;
    transition: width 0.3s ease;
}

.search-bar .search-input:focus {
    width: 200px;
}

.search-bar .search-input:hover,
.search-bar .search-input:focus {
    color: rgb(34, 34, 34);
}

.search-bar .search-input::placeholder {
    color: rgb(121, 121, 121);
    text-align: center;
}

/* Shop Navigation - EXACT copy from mikaeljansson.com */
.shop-nav {
    display: block;
    text-align: center;
    padding-bottom: 15px;
}

.shop-nav h3 {
    display: block;
    margin: 0;
    margin-top: -12px;
    margin-bottom: 13px;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
}

.shop-nav h3 a {
    font-family: AvenirNextLTPro-Regular, Helvetica, Arial, sans-serif;
    color: rgb(121, 121, 121);
    text-decoration: none;
    font-size: 21px;
    font-weight: 400;
    line-height: 21px;
    margin: 12px 0 0;
    margin-left: 6px;
    transition: color 0.2s;
    display: inline-block;
}

.shop-nav h3 a:first-child {
    margin-left: 0;
}

.shop-nav h3 a:hover {
    color: rgb(34, 34, 34);
}

.shop-nav h3 a.active {
    color: rgb(34, 34, 34);
}

.shop-nav .cart-count {
    display: inline-block;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    font-size: 10px;
    background: rgb(34, 34, 34);
    color: rgb(255, 255, 255);
    border-radius: 50%;
    padding: 0;
    margin-left: 3px;
    vertical-align: super;
    font-weight: 500;
}

/* Search bar - EXACT copy from mikaeljansson.com */
.shop-search {
    text-align: center;
    padding-bottom: 18px;
    border-bottom: 1px solid #e5e5e5;
}

.shop-search input {
    font-family: AvenirNextLTPro-Regular, Helvetica, Arial, sans-serif;
    font-size: 21px;
    color: rgb(121, 121, 121);
    background: rgb(255, 255, 255);
    border: none;
    text-align: center;
    padding: 1px 2px;
    outline: none;
}

.shop-search input:hover,
.shop-search input:focus {
    color: rgb(34, 34, 34);
}

.shop-search input::placeholder {
    color: rgb(121, 121, 121);
}

/* Old navigation styles - kept for other pages if needed */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary-color);
}

.cart-icon {
    position: relative;
    font-size: 1.2rem;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Portfolio Section */
.portfolio-section {
    padding: 40px 20px 60px;
    margin-top: 115px;
    background: #ffffff;
}

.portfolio-grid {
    list-style-type: none;
    position: relative;
    margin: 0 auto;
    padding: 0;
    max-width: 1600px;
    columns: auto;
    column-gap: 0;
}

.portfolio-item {
    width: 212px;
    cursor: pointer;
    padding: 0;
    break-inside: avoid;
    margin-bottom: 0;
    background: white;
    transition: opacity 0.25s ease-in-out;
    display: inline-block;
}

.portfolio-item:hover {
    opacity: 1;
}

.portfolio-item img {
    width: 100%;
    display: block;
}

.portfolio-caption {
    font-family: "Avenir Next LT Pro", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #797979;
    line-height: 17.234px;
    text-align: center;
    margin: 0;
    padding: 16px 0;
    width: 100%;
    background: white;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.97);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: calc(90vh - 100px);
    object-fit: contain;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.lightbox-caption {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #999;
    letter-spacing: 0.5px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: #333;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 3rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
    padding: 2rem;
}

.lightbox-nav:hover {
    color: #333;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-social {
    position: absolute;
    bottom: 2rem;
    display: flex;
    gap: 1rem;
}

.lightbox-social a {
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.lightbox-social a:hover {
    color: #666;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
    color: var(--primary-color);
}

/* Shop Teaser Section */
.shop-teaser {
    padding: 8rem 0;
    background: var(--light-gray);
    text-align: center;
}

.teaser-text {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 3rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.social-links a:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--secondary-color);
    transition: color 0.3s;
}

.close-cart:hover {
    color: var(--primary-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.empty-cart {
    text-align: center;
    color: var(--secondary-color);
    padding: 2rem 0;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-image {
    width: 80px;
    height: 100px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    font-size: 0.8rem;
    text-decoration: underline;
}

.cart-item-remove:hover {
    color: var(--primary-color);
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Shop Page Styles */
.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: var(--light-gray);
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.shop-section {
    padding: 0;
    margin: 0;
}

.shop-section .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

/* Products Masonry Layout - 3 equal columns full width */
.products-masonry {
    display: flex;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
}

.products-masonry .product-card {
    background: #ffffff;
    border: none;
    flex: 1 1 33.333%;
    max-width: 33.333%;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.product-card {
    background: var(--white);
    border: none;
    transition: box-shadow 0.3s ease;
    overflow: hidden;
    padding: 0;
}

.product-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Product Image Gallery */
.product-image-gallery {
    width: 100%;
    margin: 0;
    padding: 0;
}

.main-product-image {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block;
    margin: 0;
    padding: 0;
    object-fit: contain;
}

.main-product-image:hover {
    transform: scale(1.02);
}

.product-thumbnails {
    display: flex;
    gap: 0.5rem;
    margin: 0.75rem 1rem 0;
    overflow-x: auto;
    padding: 0.25rem 0;
}

.product-thumbnails img {
    width: 80px;
    height: auto;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    flex-shrink: 0;
}

.product-thumbnails img:hover {
    border-color: #666;
    opacity: 0.8;
}

.product-thumbnails img.active {
    border-color: #333;
}

.product-info {
    padding: 2rem;
}

.product-title {
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17.234px;
    margin-bottom: 0.5rem;
    color: #222222;
    text-align: center;
}

.product-author {
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17.234px;
    color: #797979;
    margin-bottom: 1rem;
    text-align: center;
}

.product-description {
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17.234px;
    color: #797979;
    margin-bottom: 1.5rem;
    text-align: center;
}

.product-details {
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #797979;
    margin-bottom: 1.5rem;
    text-align: center;
}

.product-details p {
    margin-bottom: 0.3rem;
    text-align: center;
}

.product-price {
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: #222222;
    margin-bottom: 1.5rem;
    text-align: center;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.btn-add-cart {
    flex: 1;
}

/* About Page */
.about-hero {
    padding: 10rem 0 6rem;
    text-align: center;
    margin-top: 80px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 3rem;
    display: block;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-section {
    padding: 6rem 0;
    margin-top: 80px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .portfolio-grid {
        column-count: 4;
    }

    .products-masonry {
        flex-wrap: wrap;
    }
}

@media (max-width: 992px) {
    .portfolio-grid {
        column-count: 3;
    }

    .nav-container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        column-count: 2;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 1rem;
    }

    .cart-icon {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-masonry {
        flex-direction: column;
        align-items: center;
    }

    .products-masonry .product-card {
        max-width: 500px;
        width: 100%;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .lightbox-nav {
        font-size: 2rem;
        padding: 1rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }

    .portfolio-section {
        padding: 5rem 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        column-count: 1;
    }

    .portfolio-item {
        width: 100%;
    }

    .products-masonry {
        flex-direction: column;
    }

    .products-masonry .product-card {
        max-width: 100%;
    }

    .nav-links a:not(.cart-icon) {
        display: none;
    }

    .nav-links {
        justify-content: flex-end;
    }
}

/* Article Wrapper (från mikaeljansson.com) */
.wrapper {
    width: 100%;
    max-width: 800px;
    margin: 24px auto 48px auto;
    text-align: left;
    line-height: 125%;
}

.wrapper.article-contact {
    max-width: 800px;
    text-align: center;
}

.wrapper h1,
.wrapper h2 {
    color: #222222;
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 21px;
    line-height: 21px;
    font-weight: 400;
    margin: 18px 0;
    text-align: center;
}

.wrapper p {
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 17.234px;
    font-weight: 400;
    color: #222222;
    margin-top: 0;
    margin-bottom: 13px;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    text-align: center;
}

/* Article Detail (från live-sajten) */
.article.detail {
    width: 100%;
    max-width: 800px;
    margin: 24px auto 48px auto;
    text-align: center;
}

.article.detail h2 {
    color: #222222;
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 21px;
    line-height: 21px;
    font-weight: 400;
    margin: 18px 0;
    text-align: center;
}

.article.detail .entry-content {
    margin: 0;
    padding: 0;
}

.article.detail .entry-content p {
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 17.234px;
    font-weight: 400;
    color: #222222;
    margin: 0 auto 13px;
    max-width: 800px;
    text-align: center;
}

/* Product Detail Page */
.product-detail-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: calc(100vh - 95px);
}

.product-detail-gallery {
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.main-image-container {
    max-width: 600px;
    width: 100%;
}

.product-detail-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.product-detail-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.product-detail-thumb {
    width: 80px;
    height: auto;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.product-detail-thumb:hover {
    border-color: #666;
}

.product-detail-thumb.active {
    border-color: #222222;
}

.product-detail-info {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.product-detail-content {
    max-width: 500px;
    width: 100%;
}

.product-detail-title {
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 21px;
    line-height: 21px;
    font-weight: 400;
    color: #222222;
    margin-bottom: 10px;
    text-align: center;
}

.product-detail-author {
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 17.234px;
    font-weight: 400;
    color: #797979;
    margin-bottom: 30px;
    text-align: center;
}

.product-detail-description {
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 17.234px;
    font-weight: 400;
    color: #222222;
    margin-bottom: 30px;
    text-align: center;
}

.product-detail-specs {
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #797979;
    margin-bottom: 30px;
    text-align: center;
}

.product-detail-specs p {
    margin-bottom: 5px;
}

.product-detail-price {
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: #222222;
    margin-bottom: 30px;
    text-align: center;
}

.product-detail-actions {
    margin-bottom: 30px;
}

.product-detail-back {
    text-align: center;
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 14px;
}

@media (max-width: 768px) {
    .product-detail-page {
        grid-template-columns: 1fr;
    }
    
    .product-detail-gallery,
    .product-detail-info {
        padding: 20px;
    }
}

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
}

.lightbox-nav {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    padding: 20px;
    user-select: none;
    transition: 0.3s;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-nav:hover {
    color: #bbb;
}

/* Checkout Page */
.checkout-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.checkout-content h2 {
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 21px;
    color: #222222;
}

.checkout-content h3 {
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222222;
    margin-bottom: 20px;
    text-align: left;
}

.checkout-cart-summary {
    background: #f9f9f9;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #e5e5e5;
}

.checkout-cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

.checkout-cart-item:last-child {
    border-bottom: none;
}

.checkout-cart-item img {
    width: 60px;
    height: auto;
    margin-right: 20px;
}

.checkout-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 14px;
}

.checkout-item-info strong {
    color: #222222;
}

.checkout-item-info span {
    color: #797979;
    font-size: 12px;
}

.checkout-item-price {
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #222222;
    font-weight: bold;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #222222;
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 21px;
    color: #222222;
}

.checkout-form {
    margin-top: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #222222;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e5e5;
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #222222;
    background: white;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #222222;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.payment-methods {
    display: flex;
    gap: 20px;
    margin: 20px 0 40px;
}

.payment-method-option {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-method-option:hover {
    border-color: #222222;
}

.payment-method-option input[type="radio"] {
    margin-right: 10px;
}

.payment-method-option span {
    font-family: 'AvenirNextLTPro-Regular', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #222222;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.form-actions .btn {
    flex: 1;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        flex-direction: column;
    }
    
    .form-actions {
        flex-direction: column;
    }
}
