/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Didot', serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

/* Vertical Logo */
.vertical-logo {
    position: fixed;
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    height: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 26px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Didot', serif;
    letter-spacing: 1px;
    line-height: 1.4;
}

.logo-text span {
    display: block;
    margin: 2px 0;
    transition: transform 0.3s ease;
}

.logo-text span:hover {
    transform: translateX(5px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 100px;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    mix-blend-mode: normal;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background-color: #D2B48C;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    background-color: #C19A6B;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Fullscreen Background */
.fullscreen-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80&sat=-100&brightness=-40');
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.85) contrast(1.1);
}

/* Centered Text Overlay */
.centered-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    z-index: -1;
    pointer-events: none;
}

/* Main Content */
main {
    margin-left: 100px;
    position: relative;
    z-index: 1;
    padding-top: 60px;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.5rem;
    color: #ffffff;
}

/* Featured Models Section */
.featured-models {
    padding: 4rem 2rem;
    background-color: rgba(0, 0, 0, 0.9);
}

.featured-models h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #ffffff;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.model-card {
    background-color: rgba(17, 17, 17, 0.8);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.model-card:hover {
    transform: translateY(-10px);
}

.model-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center 20%;
}

.model-card h3 {
    padding: 1rem;
    color: #ffffff;
}

.model-card p {
    padding: 0 1rem 1rem;
    color: #cccccc;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #000000;
}

.about h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.about h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, #ffffff, transparent);
}

.about p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 0 20px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    opacity: 0.9;
}

/* Products Page Styles */
.products-page .fullscreen-bg {
    background-image: none;
    background-color: #000000;
}

.products-main {
    margin-left: 100px;
    padding: 6rem 2rem 2rem;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
}

.products-header {
    text-align: center;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.8);
}

.products-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.products-header p {
    font-size: 2rem;
    color: #ffffff;
}

.products-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem;
}

.product-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 1.5rem;
    width: 400px;
    text-align: center;
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-card p {
    margin-bottom: 1rem;
    color: #cccccc;
}

.product-card .price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #ffffff;
    margin: 1rem 0;
}

.view-details {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-details:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.product-card .magazine-cover {
    width: 100%;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.product-card .magazine-cover img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover .magazine-cover img {
    transform: scale(1.02);
}

/* Branch Pages Styles */
.branch-main {
    padding-top: 40px;
}

.branch-hero {
    text-align: center;
    padding: 4rem 2rem 2rem 2rem;
    background-color: #111111;
}

.branch-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.branch-hero p {
    font-size: 1.5rem;
    color: #cccccc;
}

.branch-info {
    padding: 4rem 2rem;
    background-color: #000000;
}

.branch-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.branch-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.branch-text p {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.branch-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.branch-text ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.branch-text li {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.branch-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.team-member h3 {
    color: #ffffff;
    margin: 1rem 0 0.5rem;
}

.team-member p {
    color: #cccccc;
}

.team-member img[src="Olivia Kaplan.jpg"] {
    object-fit: cover;
    object-position: center 30%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    background: #000;
}

.branch-contact {
    padding: 4rem 2rem;
    background-color: #111111;
    text-align: center;
}

.branch-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-info i {
    margin-right: 0.5rem;
}

.hours h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hours p {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

/* Footer */
footer {
    background-color: #000000;
    padding: 3rem 0;
    text-align: center;
    width: calc(100% - 100px);
    margin-left: 100px;
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section p {
    color: #cccccc;
    margin: 0.5rem 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #D2B48C;
}

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

.footer-bottom p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Mobile Navigation */
.mobile-menu-button {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #D2B48C;
    color: #D2B48C;
    font-size: 24px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-button:hover {
    background: rgba(210, 180, 140, 0.2);
}

/* Media Queries */
@media (max-width: 768px) {
    body {
        width: 100% !important;
        max-width: 375px !important;
        margin: 0 auto !important;
        overflow-x: hidden !important;
    }

    .branch-main {
        width: 100% !important;
        max-width: 375px !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    .models-grid, .model {
        background-color: #000 !important;
    }

    .models-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        padding: 2rem !important;
        max-width: 375px !important;
        margin: 0 auto !important;
        min-height: 100vh !important;
    }

    .model {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
    }

    .model img {
        width: 75% !important;
        height: 450px !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }

    .model h3 {
        font-size: 1.5rem !important;
        color: #ffffff !important;
        margin: 0 !important;
        text-align: center !important;
    }

    .team-section {
        width: 100% !important;
        max-width: 375px !important;
        margin: 0 auto !important;
        padding: 1rem !important;
    }

    .team-grid {
        width: 100% !important;
        max-width: 375px !important;
        margin: 0 auto !important;
    }

    .team-member {
        width: 100% !important;
        max-width: 375px !important;
    }

    .team-member img {
        width: 150px !important;
        height: 150px !important;
        object-fit: cover !important;
        border-radius: 50% !important;
        margin-bottom: 1rem !important;
    }

    .footer-content {
        max-width: 700px;
        padding: 0 1rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-links a {
        font-size: 1.3rem;
    }

    .vertical-logo {
        position: fixed !important;
        left: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) scale(1.1) !important;
        z-index: 1000 !important;
    }

    .logo-text {
        font-size: 24px !important;
        letter-spacing: 1px !important;
        line-height: 1.2 !important;
    }

    .mobile-menu-button {
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
        z-index: 1002 !important;
        display: block !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        font-size: 32px !important;
        color: #D2B48C !important;
        padding: 10px !important;
    }

    .navbar {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        width: 200px !important;
        background: rgba(245, 245, 245, 0.1) !important;
        padding: 0.5rem !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s ease !important;
        z-index: 1001 !important;
        height: auto !important;
        backdrop-filter: blur(5px) !important;
    }

    .navbar.active {
        transform: translateX(0) !important;
        top: 60px !important;
    }

    .nav-links {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
        padding: 0.5rem 0 !important;
    }

    .nav-links li {
        width: 100% !important;
    }

    .nav-links a {
        display: block !important;
        padding: 0.8rem !important;
        width: 100% !important;
        font-size: 1.1rem !important;
        background-color: #D2B48C !important;
        color: #000000 !important;
    }

    main {
        margin-left: 80px;
        padding: 0 10px;
        max-width: calc(100% - 100px);
    }

    .centered-text {
        font-size: 3.75rem !important;
        width: calc(100% - 40px) !important;
        text-align: center !important;
        z-index: -1 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        color: white !important;
    }

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

    .model-card img {
        height: 250px;
        object-position: center 30%;
    }

    .model-card:nth-child(2) img {
        object-position: center 20%;
    }

    .team-member img {
        width: 200px;
        height: 200px;
        margin: 0 auto;
        display: block;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about {
        padding: 3rem 1rem;
    }

    .about h2 {
        font-size: 2.5rem;
        padding: 0 1rem;
    }

    .about p {
        font-size: 1.1rem;
        padding: 0 1rem;
        text-align: center;
    }

    .footer-section {
        width: 100%;
        margin: 0.5rem 0;
    }

    .products-header {
        text-align: left;
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
        margin-left: 20px;
    }

    .products-header h1 {
        font-size: 1.5rem;
        margin: 0;
        max-width: 260px;
        padding: 0;
    }

    .products-header p {
        font-size: 1rem;
        margin: 0.5rem 0;
        padding: 0;
    }

    .products-grid {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
        margin-left: 20px;
    }

    .product-card {
        width: 100%;
        max-width: 300px;
        margin: 0;
        text-align: left;
        padding: 0;
        box-sizing: border-box;
    }

    .magazine-cover {
        width: 100%;
        max-width: 280px;
        margin: 0;
    }

    .magazine-cover img {
        width: 100%;
        height: auto;
        margin: 0;
    }

    .product-card h3 {
        font-size: 1.5rem;
        margin: 1rem 0;
        max-width: 280px;
    }

    .product-card p {
        font-size: 1rem;
        margin: 0.5rem 0;
        max-width: 280px;
    }

    .price {
        font-size: 1.2rem;
        margin: 1rem 0;
    }

    .view-details {
        margin: 1rem 0;
    }

    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    .models-grid {
        padding: 1rem !important;
        gap: 1.5rem !important;
    }

    .model img {
        height: 400px !important;
    }

    .model h3 {
        font-size: 1.5rem !important;
        color: #ffffff !important;
        margin: 0 !important;
        text-align: center !important;
    }

    .contact-section {
        display: none !important;
    }

    .contact-content {
        display: none !important;
    }

    .contact-info {
        display: none !important;
    }

    /* iPhone 13 mini specific adjustments */
    @media screen and (max-width: 375px) {
        .contact-section {
            padding: 3rem 0 !important;
            margin-left: 0 !important;
            width: 100% !important;
        }

        .contact-content {
            padding: 0 15px !important;
        }

        .contact-info p {
            font-size: 1rem !important;
            padding: 0 5px !important;
        }
    }

    .team-section {
        margin: 0 !important;
        width: 100% !important;
    }

    .team-content {
        margin: 0 !important;
        padding: 0 2rem !important;
    }

    footer {
        width: 100%;
        margin-left: 0;
        padding: 2rem 0;
        position: relative;
        z-index: 2;
    }

    .footer-content {
        max-width: 375px;
        padding: 0 1rem;
        margin: 0 auto;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-links a {
        font-size: 1.3rem;
    }

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

    .footer-bottom p {
        color: #cccccc;
        font-size: 0.9rem;
    }

    .magazine-section {
        padding: 2rem 1rem !important;
        max-width: 375px !important;
        margin: 0 auto !important;
    }

    .magazine-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem !important;
        max-width: 375px !important;
        margin: 0 auto !important;
    }

    .magazine-image {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        border-radius: 8px !important;
    }

    .magazine-text {
        text-align: center !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }

    .magazine-text h2 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }

    .magazine-text p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    .products-section {
        padding: 1rem;
        max-width: 375px;
        margin: 0 auto;
    }

    .product-item {
        align-items: center;
        margin-bottom: 2rem;
        width: 100%;
    }

    .product-item img {
        max-width: 280px;
        margin: 0 auto;
    }

    .product-item h2 {
        font-size: 1.5rem;
        text-align: center;
        width: 100%;
    }

    .product-item p {
        font-size: 1rem;
        text-align: center;
        max-width: 280px;
        margin: 0 auto;
    }

    .nav-links a.products-link {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .vertical-logo {
        transform: scale(0.8);
    }

    .logo-text {
        font-size: 24px;
    }

    .centered-text {
        font-size: 3.5rem;
        transform: translate(-50%, -50%) scale(0.8);
    }

    main {
        margin-left: 60px;
        max-width: calc(100% - 80px);
    }

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

    .model-card img {
        height: 300px;
    }

    .team-member img {
        width: 180px;
        height: 180px;
    }

    .about h2 {
        font-size: 2rem;
    }

    .about p {
        font-size: 1rem;
    }

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

    .products-header p {
        font-size: 1rem;
    }

    .footer-section {
        padding: 0.8rem;
    }
}

/* iPhone SE and smaller devices */
@media (max-width: 375px) {
    .vertical-logo {
        transform: scale(0.7);
    }

    .logo-text {
        font-size: 22px;
    }

    .centered-text {
        font-size: 3rem;
        transform: translate(-50%, -50%) scale(0.7);
    }

    main {
        margin-left: 50px;
        max-width: calc(100% - 70px);
    }

    .team-member img {
        width: 160px;
        height: 160px;
    }
}

/* Landscape mode adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .vertical-logo {
        display: none;
    }

    .navbar {
        top: 10px;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }

    .centered-text {
        font-size: 3rem;
        transform: translate(-50%, -50%) scale(0.8);
    }

    .model-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop Model Grid */
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.9);
    min-height: 100vh;
}

.model {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    background-color: #1a1a1a;
    width: 90%;
    margin: 0 auto;
}

.model:hover {
    transform: translateY(-5px);
}

.model img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
    filter: grayscale(0.2) contrast(1.1);
}

.model:hover img {
    transform: scale(1.05);
}

.model h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #ffffff;
    margin: 0;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Team Section */
.team-section {
    padding: 4rem 2rem;
    background-color: rgba(0, 0, 0, 0.95);
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.contact-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
    text-align: left;
    margin-left: 0;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info {
    margin-top: 2rem;
    text-align: left;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: #333;
}

.contact-info a {
    color: #D2B48C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #8B4513;
}

.products-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    gap: 1rem;
    text-align: center;
}

.product-item img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin: 0;
}

.product-item h2 {
    font-size: 2rem;
    color: #333;
    margin: 0;
}

.product-item p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0;
}

@media (max-width: 768px) {
    .products-section {
        padding: 1rem;
        max-width: 375px;
        margin: 0 auto;
    }

    .product-item {
        align-items: center;
        margin-bottom: 2rem;
        width: 100%;
    }

    .product-item img {
        max-width: 300px;
        margin: 0 auto;
    }

    .product-item h2 {
        font-size: 1.5rem;
        text-align: center;
        width: 100%;
    }

    .product-item p {
        font-size: 1rem;
        text-align: center;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* iPhone 13 mini specific adjustments */
@media screen and (max-width: 375px) {
    .products-section {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .product-item {
        padding: 0 1rem;
    }

    .product-item img {
        max-width: 280px;
    }

    .product-item h2 {
        font-size: 1.3rem;
    }

    .product-item p {
        font-size: 0.9rem;
        max-width: 280px;
    }
}

.model img[src="Model 2.webp"] {
    object-fit: cover;
    object-position: center 30%;
} 