/* Pages Specific Styles */

/* Page Hero */
.page-hero {
    margin-top: 70px;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
}

.page-hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 16px;
    letter-spacing: 0.1em;
}

/* About Page */
.brand-story {
    padding: 160px 0 120px;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-text {
    text-align: center;
}

.story-text p {
    font-size: 16px;
    line-height: 2.2;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.philosophy {
    padding: 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.philosophy-content {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-content h2 {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 40px;
}

.philosophy-text h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.philosophy-text p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
}

.philosophy-text ul {
    list-style: none;
    padding: 0;
}

.philosophy-text li {
    font-size: 14px;
    line-height: 2;
    padding-left: 20px;
    position: relative;
}

.philosophy-text li::before {
    content: '—';
    position: absolute;
    left: 0;
}

.values {
    padding: 120px 0;
    background: #fafafa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

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

.value-item h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.08em;
}

.value-item p {
    font-size: 14px;
    line-height: 2;
    color: var(--color-secondary);
}

.company-info {
    padding: 120px 0;
}

.company-details {
    max-width: 800px;
    margin: 0 auto;
}

.company-details table {
    width: 100%;
    border-collapse: collapse;
}

.company-details th,
.company-details td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.company-details th {
    font-weight: 500;
    width: 200px;
    color: var(--color-secondary);
}

/* Shop Page */
.shop-nav {
    background: #fafafa;
    padding: 40px 0;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.shop-categories {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
}

.shop-categories a {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.shop-categories a:hover,
.shop-categories a.active {
    border-color: var(--color-primary);
}

.shop-section {
    padding: 120px 0;
}

.shop-section:nth-child(even) {
    background: #fafafa;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.product-item {
    position: relative;
}

.product-image {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-primary);
    color: #fff;
    padding: 5px 15px;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.product-name {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.product-price {
    font-size: 14px;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.product-colors {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.color-dot:hover,
.color-dot.active {
    transform: scale(1.2);
}

.btn-product {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid var(--color-primary);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-product:hover {
    background: var(--color-primary);
    color: #fff;
    opacity: 1;
}

.btn-product.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.base-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.base-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.base-content h2 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.base-content p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 40px;
}

.base-content .btn {
    background: #fff;
    color: var(--color-primary);
    border: none;
}

.base-content .btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Menu Page */
.menu-section {
    padding: 80px 0;
}

.menu-section:nth-child(even) {
    background: #fafafa;
}

.menu-category h2 {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-detail {
    display: flex;
    gap: 30px;
}

.menu-detail-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
}

.menu-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-detail-info h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.menu-detail-info .price {
    font-size: 16px;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.menu-detail-info p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--color-secondary);
}

/* Stores Page */
.store-details {
    padding: 80px 0;
}

.store-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 120px;
}

.store-detail:nth-child(even) {
    direction: rtl;
}

.store-detail:nth-child(even) > * {
    direction: ltr;
}

.store-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.store-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.store-images img:first-child {
    grid-column: 1 / -1;
    height: 400px;
}

.store-info h2 {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.store-info-table {
    margin-bottom: 30px;
}

.store-info-table table {
    width: 100%;
}

.store-info-table th,
.store-info-table td {
    padding: 15px 0;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.store-info-table th {
    font-weight: 500;
    width: 150px;
    color: var(--color-secondary);
}

.store-map {
    margin-top: 40px;
}

.store-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-form-wrap h2 {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--color-border);
    font-family: var(--font-main);
    font-size: 14px;
}

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

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

.contact-info h2 {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

.contact-info-item {
    margin-bottom: 40px;
}

.contact-info-item h3 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-info-item p {
    font-size: 14px;
    line-height: 2;
    color: var(--color-secondary);
}

.contact-info-item a {
    color: var(--color-text);
    text-decoration: underline;
}

/* Responsive for Pages */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .store-detail {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 300px;
    }
    
    .page-hero-content h1 {
        font-size: 32px;
    }
    
    .brand-story {
        padding: 100px 0 80px;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-content {
        padding: 60px 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .shop-categories {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .menu-detail {
        flex-direction: column;
    }
    
    .menu-detail-image {
        width: 100%;
        height: 300px;
    }
    
    .store-images {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Stores Page
   =========================== */

.stores-section {
    padding: 120px 0;
}

.stores-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

.stores-intro p {
    font-size: 16px;
    line-height: 2.2;
    letter-spacing: 0.05em;
}

.store-card {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 0 60px;
    border-bottom: 1px solid #e0e0e0;
}

.store-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.store-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 30px;
}

.store-header h2 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.store-type {
    font-size: 14px;
    color: #666;
    letter-spacing: 0.1em;
}

.store-info {
    margin-bottom: 40px;
}

.info-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .label {
    font-size: 14px;
    color: #999;
    letter-spacing: 0.05em;
}

.info-row .value {
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.info-row .value small {
    font-size: 13px;
    color: #999;
}

.info-row .value a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.info-row .value a:hover {
    color: #666;
}

.store-social {
    display: flex;
    gap: 16px;
}

.store-social a {
    color: #333;
    transition: color 0.3s, opacity 0.3s;
    display: inline-flex;
}

.store-social a:hover {
    color: #666;
    opacity: 0.7;
}

.store-social svg {
    display: block;
}

.store-map {
    border-radius: 4px;
    overflow: hidden;
}

.store-map iframe {
    display: block;
}

@media (max-width: 768px) {
    .stores-section {
        padding: 80px 0;
    }
    
    .stores-intro {
        margin-bottom: 60px;
    }
    
    .store-card {
        margin-bottom: 50px;
        padding-bottom: 50px;
    }
    
    .store-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .store-header h2 {
        font-size: 20px;
    }
    
    .info-row {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 12px 0;
    }
    
    .info-row .label {
        font-size: 12px;
        font-weight: 500;
    }
    
    .info-row .value {
        font-size: 14px;
    }
}

/* ===========================
   Shop Page
   =========================== */

.shop-section {
    padding: 120px 0;
}

.shop-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.shop-intro p {
    font-size: 16px;
    line-height: 2.2;
    letter-spacing: 0.05em;
}

.shop-cta {
    text-align: center;
    margin-bottom: 100px;
}

.btn-large {
    display: inline-block;
    padding: 16px 48px;
    background: #333;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.1em;
    transition: background 0.3s;
    border: 1px solid #333;
}

.btn-large:hover {
    background: #555;
    border-color: #555;
}

.products-preview {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.product-category {
    margin-bottom: 80px;
}

.product-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 8px;
}

.category-subtitle {
    font-size: 14px;
    color: #999;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.product-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.product-placeholder {
    aspect-ratio: 2 / 1;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.placeholder-content h3 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.placeholder-content p {
    font-size: 14px;
    color: #999;
    letter-spacing: 0.05em;
}

.shop-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.shop-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.shop-info a {
    color: #333;
    text-decoration: underline;
    transition: color 0.3s;
}

.shop-info a:hover {
    color: #666;
}

@media (max-width: 768px) {
    .shop-section {
        padding: 80px 0;
    }
    
    .shop-intro {
        margin-bottom: 40px;
    }
    
    .shop-cta {
        margin-bottom: 60px;
    }
    
    .btn-large {
        padding: 14px 36px;
        font-size: 13px;
    }
    
    .products-preview {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .product-category {
        margin-bottom: 60px;
    }
    
    .category-title {
        font-size: 20px;
    }
    
    .category-subtitle {
        margin-bottom: 30px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

