/* ============================================
   FROCK Los Angeles - Legacy Styles
   Recreated from Tetragram-era (2012-2013) design
   Combined with Squarespace-era (2018-2019) elements
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
}

a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #999;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* --- Container --- */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header (Tetragram Era) --- */
header.main {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 25px 0 15px;
}

header.main .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    margin-bottom: 15px;
}

.logo img {
    max-width: 280px;
    height: auto;
}

.logo a {
    display: block;
}

/* Placeholder logo text when image not available */
.logo-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #333;
}

.logo-text span {
    font-size: 14px;
    display: block;
    letter-spacing: 3px;
    color: #999;
    margin-top: 2px;
}

/* Main Navigation */
ul.main_nav {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

ul.main_nav li a {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 11px;
    text-transform: lowercase;
    letter-spacing: 1.5px;
    color: #999;
    padding: 5px 12px;
    transition: color 0.2s ease;
}

ul.main_nav li a:hover,
ul.main_nav li a.active {
    color: #333;
}

/* --- Sidebar (About section) --- */
aside.sidebar_main {
    float: left;
    width: 200px;
    padding: 30px 0;
}

aside.sidebar_main ul {
    list-style: none;
}

aside.sidebar_main ul li {
    margin-bottom: 8px;
}

aside.sidebar_main ul li a {
    font-size: 12px;
    color: #999;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

aside.sidebar_main ul li a:hover,
aside.sidebar_main ul li a.active {
    color: #333;
}

/* --- About Page Content --- */
.about {
    float: right;
    width: 720px;
    padding: 30px 0;
}

.about h2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 22px;
    font-weight: 400;
    margin: 20px 0 15px;
    color: #333;
}

.about h3 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    font-weight: 400;
    margin: 15px 0 10px;
    color: #333;
}

.about p {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.about img {
    width: 100%;
    margin-bottom: 15px;
}

.col_left, .col_right {
    width: 48%;
    float: left;
}

.col_left {
    margin-right: 4%;
}

.col_full {
    width: 100%;
    clear: both;
}

/* --- Features Section (Homepage) --- */
section.features,
section.features_alt {
    padding: 30px 0;
    overflow: hidden;
}

.feat_left, .feat_middle, .feat_right {
    float: left;
    width: 31.33%;
    margin-right: 3%;
}

.feat_right {
    margin-right: 0;
}

.feat_left img, .feat_middle img, .feat_right img {
    width: 100%;
    margin-bottom: 10px;
}

.c_block {
    padding: 5px 0;
}

.c_block h2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1.4;
}

.c_block p {
    font-size: 12px;
    color: #999;
    line-height: 1.5;
    margin: 5px 0;
}

span.bar {
    display: block;
    width: 40px;
    height: 1px;
    background: #ccc;
    margin: 8px 0;
}

a.ft {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    border-bottom: 1px solid #333;
    padding-bottom: 2px;
}

a.ft:hover {
    color: #999;
    border-bottom-color: #999;
}

/* --- Carousel / Slideshow --- */
section.carousel {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.fla_carousel {
    position: relative;
    max-width: 100%;
}

.fla_carousel ul {
    list-style: none;
}

.fla_carousel img {
    width: 100%;
    display: block;
}

.caption_block {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
}

.fla_controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}

.fla_controls a {
    display: block;
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
}

/* --- Lookbook Grid --- */
.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 30px 0;
}

.lookbook-item {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 2/3;
}

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

.lookbook-item:hover img {
    opacity: 0.85;
}

.lookbook-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
    color: #fff;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Product Grid (Squarespace era) --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 30px 0;
}

.product-item {
    text-align: center;
}

.product-item .product-image {
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
    aspect-ratio: 2/3;
    margin-bottom: 12px;
}

.product-item .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-item h3 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product-item .price {
    font-size: 13px;
    color: #999;
}

.product-item .price .sale {
    color: #cc0000;
    margin-left: 5px;
}

.product-item .price .original {
    text-decoration: line-through;
}

/* --- Blog --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    padding: 30px 0;
}

.blog-post {
    text-align: left;
}

.blog-post .post-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 15px;
}

.blog-post .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post .post-date {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.blog-post h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 8px;
}

.blog-post p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.blog-post .read-more {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    border-bottom: 1px solid #333;
    padding-bottom: 2px;
}

/* --- Page Content (Generic) --- */
.page-content {
    padding: 40px 0 60px;
}

.page-content h1 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #333;
}

.page-content h2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 22px;
    font-weight: 400;
    margin: 25px 0 15px;
    color: #333;
}

.page-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 10px;
    color: #333;
}

.page-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.page-content ul, .page-content ol {
    margin: 10px 0 20px 25px;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.page-content blockquote {
    border-left: 3px solid #ddd;
    padding: 10px 20px;
    margin: 20px 0;
    font-style: italic;
    color: #777;
}

/* --- FAQ --- */
.faq-section {
    padding: 40px 0 60px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-item h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    cursor: pointer;
}

.faq-item p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* --- Newsletter Placeholder --- */
.newsletter-placeholder {
    background: #f7f7f7;
    border: 1px solid #eee;
    padding: 25px;
    text-align: center;
    margin: 20px 0;
    border-radius: 2px;
}

.newsletter-placeholder p {
    font-size: 13px;
    color: #999;
    font-style: italic;
}

/* --- Form Placeholder --- */
.form-placeholder {
    background: #f9f9f9;
    border: 1px dashed #ddd;
    padding: 40px;
    text-align: center;
    margin: 20px 0;
}

.form-placeholder p {
    font-size: 14px;
    color: #999;
}

/* --- Store Locator Grid --- */
.store-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 30px 0;
}

.store-item {
    text-align: center;
}

.store-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    margin-bottom: 10px;
    background: #f5f5f5;
}

.store-item h3 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 3px;
}

.store-item p {
    font-size: 12px;
    color: #999;
}

/* --- Video Grid --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px 0;
}

.video-item {
    position: relative;
    background: #000;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.video-item .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-item .play-icon::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 16px solid #333;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 3px;
}

.video-item .video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-size: 13px;
}

/* --- Campaign Gallery --- */
.campaign-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 30px 0;
}

.campaign-gallery img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    background: #f5f5f5;
}

/* --- Footer --- */
footer {
    background: #fafafa;
    border-top: 1px solid #eee;
    padding: 40px 0 30px;
    margin-top: 40px;
}

footer .container {
    text-align: center;
}

ul.foot_links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

ul.foot_links li a {
    font-size: 11px;
    color: #999;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

ul.foot_links li a:hover {
    color: #333;
}

ul.social {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

ul.social li a img {
    width: 28px;
    height: 28px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

ul.social li a:hover img {
    opacity: 1;
}

/* Social links text fallback */
ul.social li a {
    font-size: 12px;
    color: #999;
}

.newsletter-placeholder-footer {
    font-size: 12px;
    color: #bbb;
    font-style: italic;
    margin-top: 15px;
}

.copyright {
    font-size: 11px;
    color: #ccc;
    margin-top: 20px;
}

/* --- Banner / Hero Section --- */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 400px;
    background: #222;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-banner .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 40px;
}

.hero-banner .hero-content h1 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-banner .hero-content p {
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* --- Image Placeholder (for missing images) --- */
.image-placeholder {
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Press Logos Grid --- */
.press-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px 0;
    align-items: center;
}

.press-item {
    text-align: center;
    padding: 15px;
}

.press-item img {
    max-width: 120px;
    margin: 0 auto;
    opacity: 0.6;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    header.main .container {
        flex-direction: column;
    }

    ul.main_nav {
        gap: 3px;
    }

    ul.main_nav li a {
        font-size: 10px;
        padding: 5px 8px;
    }

    aside.sidebar_main {
        float: none;
        width: 100%;
        padding: 15px 0;
    }

    .about {
        float: none;
        width: 100%;
    }

    .col_left, .col_right {
        float: none;
        width: 100%;
        margin-right: 0;
    }

    .feat_left, .feat_middle, .feat_right {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 25px;
    }

    .lookbook-grid,
    .product-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .campaign-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* ─── Product Detail Page ────────────────────────────────────────────── */
.breadcrumb {
    font-size: 13px;
    color: #888;
    margin-bottom: 24px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #333;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.product-image-large {
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

.product-image-large .image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #bbb;
    letter-spacing: 2px;
}

.product-info h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 8px;
    color: #222;
}

.product-info .price {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.product-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

.product-details-list {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-bottom: 24px;
}

.product-details-list h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #333;
}

.product-details-list ul {
    list-style: none;
    padding: 0;
}

.product-details-list li {
    font-size: 14px;
    color: #666;
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.product-details-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #999;
}

.product-note {
    font-size: 13px;
    color: #888;
    font-style: italic;
}

.related-section {
    border-top: 1px solid #eee;
    padding-top: 32px;
    margin-bottom: 32px;
}

.related-section h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #333;
}

.product-grid-small {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-image-large .image-placeholder {
        height: 300px !important;
    }
}

@media (max-width: 480px) {
    .lookbook-grid,
    .product-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .campaign-gallery {
        grid-template-columns: 1fr;
    }

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

    .hero-banner {
        min-height: 250px;
    }

    .hero-banner .hero-content h1 {
        font-size: 24px;
    }

    .product-info h1 {
        font-size: 22px;
    }
}
