
:root {
    --primary-color: #0f766e;
    --primary-light: #67e8f9;
    --primary-dark: #083344;
    --secondary-color: #1d4ed8;
    --accent-color: #f97316;
    --success-color: #16a34a;
    --warning-color: #eab308;
    --error-color: #dc2626;
    --text-primary: #102a43;
    --text-secondary: #587181;
    --bg-primary: #ffffff;
    --bg-secondary: #edf7f5;
    --border-color: #cfe7e3;
    --footer-bg: #083344;
    --footer-text: #ffffff;
}

/* Generate varied gradient combinations */
.feature-icon {
    background: linear-gradient(160deg, var(--primary-color), var(--secondary-color)) !important;
}

.newsletter {
    background: linear-gradient(217deg, var(--primary-light), var(--primary-dark)) !important;
}

.back-to-top {
    background: linear-gradient(0deg, var(--primary-color), var(--accent-color)) !important;
}

/* Additional gradient variations for buttons and elements */
.btn-primary, .cart-button {
    background: linear-gradient(129deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
}

.hero-title .highlight, .section-title .highlight {
    background: linear-gradient(188deg, var(--secondary-color), var(--accent-color)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

body {
    background-color: var(--bg-secondary) !important;
}

/* Site description section */
.site-description {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.description-content {
    max-width: 800px;
    margin: 0 auto;
}

.description-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
}

.description-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #6b7280;
    margin: 0 auto;
    max-width: 700px;
}

.description-text + .description-text {
    margin-top: 18px;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
}

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


.header-minimal {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.header-minimal-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-minimal img {
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.logo-minimal img:hover {
    filter: grayscale(0);
}

.cart-button-minimal {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.cart-button-minimal:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.minimal-nav {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.minimal-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 40px;
    padding: 15px 0;
    margin: 0;
}

.minimal-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.hero-modern-gradient {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(ellipse at top left, rgba(15, 118, 110, 0.85) 0%, transparent 52%),
        radial-gradient(ellipse at bottom right, rgba(249, 115, 22, 0.52) 0%, transparent 48%),
        linear-gradient(135deg, #062a35 0%, #0b3d4a 48%, #102a43 100%);
    color: white;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.3), transparent);
    background-size: 150px 150px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(-20px) translateX(0px); }
    75% { transform: translateY(-10px) translateX(-5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.hero-modern-gradient .hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-modern-gradient .hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.hero-modern-gradient .hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-modern-gradient .gradient-text {
    background: linear-gradient(135deg, #a7f3d0, #fed7aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-modern-gradient .hero-description {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.85;
    color: #e2e8f0;
}

.hero-modern-gradient .hero-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.hero-modern-gradient .metric {
    text-align: center;
}

.hero-modern-gradient .metric-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    line-height: 1;
}

.hero-modern-gradient .metric-label {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.hero-modern-gradient .hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.hero-modern-gradient .hero-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-modern-gradient .hero-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-modern-gradient .hero-btn-glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-modern-gradient .hero-btn-glass:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.hero-modern-gradient .floating-cards {
    position: relative;
    height: 400px;
}

.hero-modern-gradient .floating-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    animation: floatCard 6s ease-in-out infinite;
}

.hero-modern-gradient .floating-card i {
    font-size: 2rem;
    color: var(--accent-color);
}

.hero-modern-gradient .floating-card span {
    font-weight: 500;
    font-size: 0.9rem;
}

.hero-modern-gradient .card-1 {
    top: 20px;
    left: 50px;
    animation-delay: 0s;
}

.hero-modern-gradient .card-2 {
    top: 150px;
    right: 30px;
    animation-delay: 2s;
}

.hero-modern-gradient .card-3 {
    bottom: 50px;
    left: 20px;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@media (max-width: 768px) {
    .hero-modern-gradient .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-modern-gradient .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-modern-gradient .hero-metrics {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-modern-gradient .floating-cards {
        height: 200px;
    }
}

.seafood-picks {
    padding: 70px 0;
    background: linear-gradient(180deg, #ffffff 0%, #eef8f6 100%);
}

.seafood-picks-header {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.seafood-picks-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.seafood-pick {
    min-height: 150px;
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #ffffff;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 14px 34px rgba(8, 51, 68, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.seafood-pick i {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #e0f2fe;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.seafood-pick span {
    font-size: 1.15rem;
    font-weight: 800;
}

.seafood-pick small {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.seafood-pick:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 118, 110, 0.38);
    box-shadow: 0 20px 46px rgba(8, 51, 68, 0.14);
}

.seafood-pick-accent {
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 74%);
}

.seafood-pick-accent i {
    background: #ffedd5;
    color: var(--accent-color);
}

.cart-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

/* When displayed via JS (display: block or flex) */
.cart-modal[style*="display: block"],
.cart-modal[style*="display:block"],
.cart-modal.show {
    display: flex !important;
}

.cart-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 750px;
    width: 95%;
    max-height: 85vh;
    overflow-y: auto;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.close-cart {
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

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

.cart-items {
    margin-bottom: 20px;
}

.cart-total {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: right;
}

.cart-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
}

.cart-footer {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.cart-footer button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.clear-cart {
    background: #ef4444;
    color: white;
}

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

.close-btn {
    background: #6b7280;
    color: white;
}

.show-cart { width: 100%; border-collapse: collapse; }
.show-cart th { padding: 10px 0; border-bottom: 2px solid #eee; font-size: 13px; font-weight: 600; text-align: left; color: #666; }
.show-cart td { padding: 10px 0; border-bottom: 1px solid #eee; font-size: 14px; vertical-align: middle; }
.show-cart td img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; }
.quantity-control { display: inline-flex; align-items: center; gap: 4px; }
.quantity-btn { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; background: #f3f4f6; border-radius: 6px; cursor: pointer; font-size: 16px; user-select: none; }
.quantity-btn:hover { background: #e5e7eb; }
.item-count { width: 40px; text-align: center; border: 1px solid #ddd; border-radius: 6px; padding: 4px; font-size: 14px; }
.delete-item { background: none; border: none; color: #999; cursor: pointer; font-size: 16px; padding: 4px 8px; }
.delete-item:hover { color: #ef4444; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 40px;
}

.search-container {
    position: relative;
}

.search-input {
    padding: 10px 15px 10px 40px;
    border: 1px solid #ddd;
    border-radius: 25px;
    width: 250px;
    outline: none;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.cart-button {
    position: relative;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-button:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .search-input {
        width: 150px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

.features {
    padding: 80px 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
}

.feature-icon i {
    font-size: 36px;
    color: white;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f2937;
}

.feature-text {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

.products {
    padding: 80px 0;
    background: #f8fafc;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
    gap: 28px;
}

.product-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.product-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.4);
}

.product-card:hover:before {
    opacity: 1;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: contrast(1.1) saturate(1.1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
    filter: contrast(1.2) saturate(1.2);
}

.product-info {
    padding: 20px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.product-title {
    font-size: 17px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
    line-height: 1.3;
}

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

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

.product-description {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

.product-price {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.product-price::after,
.product-price-main::after {
    content: " ₽";
}

.product-button {
    width: 100%;
    margin-top: 10px;
}


.footer-minimal {
    background: var(--footer-bg);
    color: var(--footer-text);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding: 40px 0 20px;
}

.minimal-footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.minimal-left .minimal-logo img {
    margin-bottom: 15px;
}

.minimal-desc {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 8px;
}

.minimal-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.minimal-footer-nav a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.minimal-footer-nav a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.minimal-contact p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 8px;
    font-weight: 500;
    overflow-wrap: anywhere;
}

.minimal-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 20px;
    text-align: center;
}

.minimal-footer-bottom p {
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
}

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

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}


.product-button, .add-to-cart {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    position: relative;
}

.newsletter-button {
    background: white !important;
    color: #333 !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    position: relative;
}

.product-button:hover, .add-to-cart:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.newsletter-button:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.add-to-cart-main {
    background: rgba(255, 255, 255, 0.15);
    color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    backdrop-filter: blur(15px);
    position: relative;
}

.add-to-cart-main:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.product-button i, .add-to-cart i, .add-to-cart-main i {
    font-size: 14px;
    filter: drop-shadow(0 0 3px rgba(0,0,0,0.3));
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.back-to-top.show,
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.main-content {
    background: #ffffff;
}

.main-content h1 {
    color: var(--text-primary);
    font-size: 2.2rem;
    margin-bottom: 28px;
}

.main-content h2 {
    color: var(--text-primary);
    margin: 28px 0 18px;
}

.contact-section,
.delivery-info,
.warranty-return {
    display: grid;
    gap: 24px;
}

.contact-info-block,
.feedback-section,
.location-map,
.delivery-option,
.payment-option,
.delivery-notes,
.guarantee-item,
.exchange-info,
.contact-support,
.return-steps {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 22px;
}

.contact-list,
.delivery-info ul,
.exchange-info ul,
.contact-support ul {
    padding-left: 20px;
}

.contact-list li,
.delivery-info li,
.exchange-info li,
.contact-support li {
    margin-bottom: 10px;
    color: #334155;
}

.delivery-options,
.payment-methods,
.guarantees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.guarantee-item i {
    color: var(--primary-color);
    font-size: 26px;
    margin-bottom: 12px;
}

.contact-form {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 14px;
    font: inherit;
}

.btn-primary {
    border: none;
    border-radius: 8px;
    color: #ffffff;
    padding: 13px 18px;
    font-weight: 700;
    cursor: pointer;
}

td>img{max-height:70px}
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .products {
        padding: 60px 0;
    }

    .seafood-picks-grid {
        grid-template-columns: 1fr;
    }

    .minimal-menu {
        flex-wrap: wrap;
        gap: 14px 22px;
        padding: 14px 12px;
    }

    .minimal-footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
}
