/* Color Scheme Variables */
:root {
    --primary-color: #0f3d4a;
    --primary-light: #1d6674;
    --primary-dark: #08252f;
    --secondary-color: #2f8f8b;
    --accent-color: #f47c5f;
    --success-color: #2f8f60;
    --warning-color: #d99731;
    --error-color: #db3030;
    --text-primary: #12262f;
    --text-secondary: #60717a;
    --bg-primary: #ffffff;
    --bg-secondary: #eef7f7;
    --border-color: #d8e8e8;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--bg-primary);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white !important;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Header Styles */

.header-minimal {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 2px solid var(--border-color);
}

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

.logo-minimal {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.nav-minimal {
    display: flex;
    gap: 2.5rem;
}

.nav-minimal a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-minimal a:hover {
    color: var(--primary-color);
}

.header-minimal-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-minimal {
    color: var(--text-secondary);
    font-weight: 500;
}

.cart-minimal {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.cart-minimal:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Styles */

.hero-split-cards {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.hero-split-cards::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.05;
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.hero-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.hero-card:nth-child(1),
.hero-card:nth-child(3) {
    transform: translateY(2rem);
}

.hero-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.hero-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.hero-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        grid-template-columns: 1fr;
    }

    .hero-card:nth-child(1),
    .hero-card:nth-child(3) {
        transform: none;
    }
}

/* Footer Styles */

.footer-modern {
    background: var(--text-primary);
    color: white;
    padding: 4rem 0 0;
    margin-top: 5rem;
}

.footer-modern-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-card p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-card a {
    display: block;
    color: white;
    text-decoration: none;
    opacity: 0.7;
    margin-bottom: 0.75rem;
    transition: opacity 0.3s ease;
}

.footer-card a:hover {
    opacity: 1;
}

.btn-footer {
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.footer-modern-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .footer-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-modern-grid {
        grid-template-columns: 1fr;
    }
}

/* Card Styles */

.card-modern {
    background: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    display: block;
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-modern:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    padding: 0.75rem 1.5rem;
    background: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.card-modern:hover .quick-view {
    transform: translateY(0);
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.product-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.card-modern .product-card-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.card-modern .product-card-stars { display: flex; gap: 1px; color: var(--accent-color, #fbbf24); }
.card-modern .product-card-stars svg { width: 13px; height: 13px; fill: currentColor; stroke: none; }
.card-modern .product-card-stars .empty { color: var(--border-color, #d1d5db); }
.card-modern .product-card-stars .half-filled { margin-left: -14px; clip-path: inset(0 50% 0 0); }
.card-modern .product-card-rating span { font-size: 12px; color: var(--text-secondary); }

/* Button Styles */

/* Base button styles */
.btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary, .btn-icon {
    background: var(--primary-color);
    color: white;
    padding-left: 1.5rem;
    padding-right: 2rem;
}

.btn-primary:hover, .btn-icon:hover {
    transform: translateX(5px);
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.2);
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.add-to-cart, .product-btn, .cart-button {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.add-to-cart:hover, .product-btn:hover, .cart-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Item Page Styles */

/* Minimal Layout Styles */
.item-minimal {
    padding: 60px 0;
    min-height: 80vh;
}

.minimal-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 0 20px;
}

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

.minimal-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.minimal-title {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 0;
}

.minimal-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: #666;
}

.minimal-rating .stars {
    color: #fbbf24;
}

.minimal-price {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.minimal-description {
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.minimal-btn-primary {
    width: 100%;
    padding: 15px;
    background: #000;
    color: white;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.minimal-btn-primary:hover {
    background: #333;
}

@media (max-width: 768px) {
    .minimal-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
}

/* Seafood site polish */
html {
    scroll-behavior: smooth;
}

body {
    background: #f7fbfb;
    overflow-x: hidden;
}

a {
    color: inherit;
}

.header-minimal {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
}

.header-container {
    min-height: 76px;
    gap: 1.5rem;
}

.logo-minimal {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    background: none;
    color: var(--primary-dark);
    -webkit-text-fill-color: currentColor;
}

.logo-minimal img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex: 0 0 auto;
}

.logo-minimal span {
    display: grid;
    line-height: 1.1;
    min-width: 0;
}

.logo-minimal strong {
    font-size: 1.25rem;
    font-weight: 900;
    white-space: nowrap;
}

.logo-minimal small {
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 600;
    -webkit-text-fill-color: var(--text-secondary);
}

.nav-minimal {
    gap: 1.75rem;
}

.nav-minimal a,
.phone-minimal {
    color: var(--text-primary);
    text-decoration: none;
}

.phone-minimal {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.cart-minimal {
    width: 48px;
    height: 44px;
    border-radius: 8px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    background: var(--primary-color);
}

.hero-split-cards::before {
    display: none;
}

.hero-seafood {
    padding: 5rem 0 4rem;
    background:
        linear-gradient(90deg, rgba(247, 251, 251, 0.98) 0%, rgba(247, 251, 251, 0.9) 46%, rgba(247, 251, 251, 0.5) 100%),
        #f7fbfb;
}

.hero-seafood .hero-container {
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
    gap: 3rem;
}

.hero-kicker,
.content-kicker,
.product-tag,
.minimal-meta {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    border-radius: 999px;
    background: rgba(244, 124, 95, 0.12);
    color: #a8452f;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
}

.hero-title {
    letter-spacing: 0;
}

.hero-description {
    max-width: 650px;
}

.hero-media {
    display: block;
    position: relative;
    min-height: 440px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    display: block;
}

.hero-card.hero-card-accent {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    max-width: min(360px, calc(100% - 2.5rem));
    border-radius: 8px;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-lg);
    transform: none;
}

.hero-card.hero-card-accent:hover {
    transform: none;
}

.feature-card,
.card-modern,
.content-panel,
.cart-content {
    border-radius: 8px;
}

.feature-card {
    background: #ffffff;
    border-color: var(--border-color);
    text-align: left;
}

.feature-icon {
    margin: 0 0 1.25rem;
    border-radius: 8px;
    background: var(--primary-color);
}

.products {
    background: #eef7f7;
}

.products-grid:empty {
    min-height: 0;
}

.products-action,
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.product-tag {
    margin-bottom: 0.75rem;
    text-transform: none;
}

.product-card-rating {
    display: none;
}

.product-footer {
    gap: 1rem;
}

.product-price {
    font-size: 1.25rem;
}

.quick-view {
    border-radius: 8px;
    color: var(--primary-dark);
}

.cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
}

.cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.75);
    color: white;
}

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

.footer-modern {
    background: var(--primary-dark);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.footer-card p {
    overflow-wrap: anywhere;
}

.footer-card p a {
    display: inline;
    margin: 0;
}

.content-page {
    padding: 3.5rem 0 1rem;
}

.content-in {
    max-width: 1060px;
    margin: 0 auto;
}

.content-in h1 {
    font-size: 2.7rem;
    line-height: 1.12;
    margin: 0.9rem 0 1rem;
    color: var(--primary-dark);
}

.content-in .lead {
    max-width: 760px;
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.content-panel {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.content-panel h2,
.text-content h2 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 0.85rem;
}

.full-panel {
    margin-top: 1.5rem;
}

.clean-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--text-secondary);
}

.clean-list li {
    margin-bottom: 0.7rem;
}

.ordered {
    padding-left: 1.4rem;
}

.text-content {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
}

.text-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.map-panel {
    margin-top: 2rem;
}

.related-products {
    padding: 60px 0;
    background: #eef7f7;
}

.related-products h2 {
    margin-bottom: 30px;
}

.minimal-title {
    letter-spacing: 0;
}

.minimal-meta {
    margin-bottom: 1rem;
}

.minimal-btn-primary {
    border-radius: 8px;
    background: var(--primary-color);
}

.minimal-btn-primary:hover {
    background: var(--primary-dark);
}

@media (max-width: 1100px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }

    .hero-seafood .hero-container {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .header-container {
        align-items: stretch;
        gap: 0.9rem;
    }

    .logo-minimal {
        width: 100%;
        justify-content: center;
    }

    .nav-minimal {
        width: 100%;
        justify-content: center;
        gap: 0.8rem;
        flex-wrap: wrap;
    }

    .header-minimal-actions {
        width: 100%;
        justify-content: center;
        gap: 0.8rem;
        flex-wrap: wrap;
    }

    .phone-minimal {
        white-space: normal;
        justify-content: center;
    }

    .hero-seafood {
        padding: 3rem 0;
    }

    .hero-media,
    .hero-media img {
        min-height: 300px;
    }

    .hero-card.hero-card-accent {
        position: static;
        max-width: none;
        border-radius: 0;
    }

    .hero-buttons {
        align-items: stretch;
    }

    .hero-buttons .btn,
    .cta-actions .btn {
        width: 100%;
    }

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

    .content-in h1 {
        font-size: 2rem;
    }

    .text-content {
        padding: 1.25rem;
    }

    .product-footer {
        align-items: stretch;
        flex-direction: column;
    }
}
