﻿/* ===== LiYunTong - Professional Design ===== *//* --- CSS Variables --- */:root {    --primary: #2563eb;    --primary-light: #3b82f6;    --primary-dark: #1d4ed8;        --sky: #0ea5e9;    --sky-light: #38bdf8;        --green: #10b981;    --green-light: #34d399;        --amber: #f59e0b;    --amber-light: #fbbf24;        --slate-900: #0f172a;    --slate-800: #1e293b;    --slate-700: #334155;    --slate-600: #475569;    --slate-500: #64748b;    --slate-400: #94a3b8;    --slate-300: #cbd5e1;    --slate-200: #e2e8f0;    --slate-100: #f1f5f9;    --slate-50: #f8fafc;        --white: #ffffff;    --text: var(--slate-800);    --text-light: var(--slate-500);    --bg: var(--slate-50);    --card: var(--white);        --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);        --radius: 8px;    --radius-md: 10px;    --radius-lg: 12px;    --radius-xl: 16px;    --border: var(--slate-200);    --bg-alt: var(--slate-100);    --text-muted: var(--slate-500);    --shadow-md: 0 6px 12px -2px rgba(0,0,0,0.1), 0 3px 6px -3px rgba(0,0,0,0.08);}/* --- Reset & Base --- */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }html { scroll-behavior: smooth; }body {    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Microsoft YaHei', sans-serif;    color: var(--text);    background: var(--bg);    line-height: 1.6;    -webkit-font-smoothing: antialiased;}a { text-decoration: none; color: inherit; }img { max-width: 100%; display: block; }/* --- Header --- */.header {    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);    backdrop-filter: blur(12px);    border-bottom: 1px solid var(--slate-200);    padding: 1rem 2rem;    position: sticky;    top: 0;    z-index: 100;    display: flex;    align-items: center;    justify-content: space-between;    box-shadow: var(--shadow-sm);}.logo-wrap {    display: flex;    align-items: center;    gap: 18px;    text-decoration: none;}.logo-mark {
    font-family: "Montserrat", sans-serif;
    font-size: 3.0rem;
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    text-transform: uppercase;
}
.logo-mark .logo-li {
    color: #1e293b;
    text-shadow:
        0 1px 0 #94a3b8,
        0 2px 0 #64748b,
        0 3px 0 #475569,
        0 4px 6px rgba(0,0,0,0.3),
        0 0 20px rgba(219,234,254,0.3);
}
.logo-mark .logo-yun {
    color: #dbeafe;
    text-shadow:
        0 1px 0 #94a3b8,
        0 2px 0 #64748b,
        0 3px 0 #475569,
        0 4px 6px rgba(0,0,0,0.3),
        0 0 20px rgba(219,234,254,0.3);
}
.logo-mark .logo-tong {
    color: #0f172a;
    position: relative;
    text-shadow:
        0 1px 0 #334155,
        0 2px 0 #1e293b,
        0 3px 0 #0f172a,
        0 4px 6px rgba(0,0,0,0.5),
        0 0 25px rgba(15,23,42,0.3);
}
.logo-mark .logo-tong::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: #0f172a;
    border-radius: 2px;
    opacity: 0.4;
    box-shadow: 0 1px 3px rgba(15,23,42,0.4);
}
.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.logo-brand {
    font-family: "Montserrat", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: 1px;
    line-height: 1;
}
.logo-tagline {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.nav { display: flex; gap: 2rem; }
.nav a { font-size: 0.95rem; font-weight: 500; color: var(--slate-600); transition: color 0.2s; }
.nav a:hover, .nav a.active { color: var(--primary); }
.header-actions { display: flex; gap: 1rem; align-items: center; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: var(--radius-md); font-weight: 600; font-size: 0.95rem; transition: all 0.2s; border: none; cursor: pointer; }
.btn-primary { background: var(--primary); color: var(--amber); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-accent { background: var(--amber); color: var(--slate-900); }
.btn-accent:hover { background: var(--amber-light); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--slate-700); transition: all 0.3s; }
/* --- Hero --- */
/* --- Hero (Home) --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-home {
    background: url('../images/hero-bg-new.jpg') center/cover no-repeat;
    color: var(--amber);
}
.hero-home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.55) 0%, rgba(30,41,59,0.35) 50%, rgba(51,65,85,0.50) 100%);
    z-index: 1;
}
.hero-sourcing {
    background: url('../images/hero-sourcing-new.jpg') center/cover no-repeat;
    color: var(--amber);
}
.hero-sourcing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.55) 0%, rgba(30,41,59,0.35) 50%, rgba(51,65,85,0.50) 100%);
    z-index: 1;
}
.hero-travel {
    background: url('../images/hero-travel.jpg') center/cover no-repeat;
    color: var(--amber);
}
.hero-travel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.55) 0%, rgba(30,41,59,0.35) 50%, rgba(51,65,85,0.50) 100%);
    z-index: 1;
}
.hero-services {
    background: url('../images/hero-ocean.jpg') center/cover no-repeat;
    color: var(--amber);
}
.hero-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.55) 0%, rgba(30,41,59,0.35) 50%, rgba(51,65,85,0.50) 100%);
    z-index: 1;
}
.hero-about {
    background: url('../images/hero-about.jpg') center/cover no-repeat;
    color: var(--amber);
}
.hero-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.55) 0%, rgba(30,41,59,0.35) 50%, rgba(51,65,85,0.50) 100%);
    z-index: 1;
}
.hero-contact {
    background: url('../images/hero-ocean.jpg') center/cover no-repeat;
    color: var(--amber);
}
.hero-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.55) 0%, rgba(30,41,59,0.35) 50%, rgba(51,65,85,0.50) 100%);
    z-index: 1;
}
.hero-products {
    background: url('../images/hero-products.jpg') center/cover no-repeat;
    color: var(--amber);
}

.hero-logistics {
    background: url('../images/hero-shipping-new.jpg') center/cover no-repeat;
    color: var(--amber);
}
.hero-logistics::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.55) 0%, rgba(30,41,59,0.35) 50%, rgba(51,65,85,0.50) 100%);
    z-index: 1;
}
.hero-products::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.55) 0%, rgba(30,41,59,0.35) 50%, rgba(51,65,85,0.50) 100%);
    z-index: 1;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-content.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 4rem 2rem; }
.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}
.hero-sub {
    color: #ffffff !important;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero h1 .hl { color: #38bdf8; }
/* --- Footer --- */
.footer { background: var(--slate-900); color: var(--slate-400); padding: 4rem 2rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-col h4 { color: var(--slate-200); font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--slate-400); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid var(--slate-800); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; }
.footer-address { text-align: right; line-height: 1.6; color: #94a3b8;}
/* WhatsApp Float Button */
.wa-btn { position: fixed; bottom: 2rem; right: 2rem; width: 60px; height: 60px; background: #25d366; color: #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); z-index: 999; transition: transform 0.2s; }
.wa-btn:hover { transform: scale(1.1); }
.wa-btn svg { width: 32px; height: 32px; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; transition: background 0.2s; }
.footer-social a:hover { background: rgba(255,255,255,0.2); }
.footer-social svg { width: 20px; height: 20px; color: var(--slate-400); }
/* Responsive */
@media (max-width: 768px) { .header-actions { display: none; } .mobile-toggle { display: flex; } .footer-grid { grid-template-columns: 1fr; } }
/* --- Trust Bar --- */
.trust-bar { background: var(--slate-100); padding: 1.5rem 2rem; display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; border-bottom: 1px solid var(--slate-200); }
.trust-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--slate-700); font-weight: 500; }
.trust-item svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }
/* --- Service Highlight --- */
.service-highlight { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.service-highlight.reverse { direction: rtl; }
.service-highlight.reverse > * { direction: ltr; }
.sh-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.sh-content h3 { font-size: 2rem; font-weight: 700; color: var(--slate-900); margin-bottom: 1rem; line-height: 1.3; }
.sh-content p { color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.8; }
.sh-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.sh-list-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.check-icon { width: 24px; height: 24px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.check-icon svg { width: 100%; height: 100%; }
/* --- Link Arrow --- */
.link-arrow { color: var(--primary); font-weight: 600; display: inline-flex; align-items: center; gap: 0.25rem; transition: gap 0.2s; }
.link-arrow:hover { gap: 0.5rem; }
/* --- Hero Stats --- */
.hero-stats { display: flex; gap: 3rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.2); }
.hero-stat-val { font-size: 2.5rem; font-weight: 700; color: #fbbf24; line-height: 1; }
.hero-stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-top: 0.5rem; }
/* --- Section --- */
.section { padding: 5rem 2rem; }
/* --- Outline Button --- */
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--amber); }
/* --- Card Grid --- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.card { background: var(--card); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.card-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), var(--sky)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--amber); margin-bottom: 1.25rem; }
.card-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--slate-900); }
.card p { color: var(--slate-600); line-height: 1.7; }
/* --- Process Steps --- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2.5rem; }
.process-step { text-align: center; }
.step-num { width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary), var(--sky)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--amber); font-weight: 700; font-size: 1.1rem; margin: 0 auto 1rem; }
.process-step h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.9rem; color: var(--slate-600); }
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process-steps { grid-template-columns: 1fr; } }
/* --- Social Proof --- */
.sp-section { background: var(--slate-900); color: var(--amber); }
.sp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.sp-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.sp-item img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) { .sp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sp-grid { grid-template-columns: 1fr; } }
/* --- Stats Row --- */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
}
.stat-icon svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--primary);
}
.stat-val {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--amber);
    line-height: 1.2;
}
.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}
@media (max-width: 768px) {
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .stat-icon svg { width: 40px; height: 40px; }
    .stat-val { font-size: 2rem; }
}
/* --- CTA Section --- */
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%); color: var(--amber); text-align: center; padding: 5rem 2rem; }
.cta-section h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.cta-section p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 2rem; }
.cta-section .btn-accent { background: var(--white); color: var(--primary); }
.cta-section .btn-accent:hover { background: var(--slate-100); color: var(--primary-dark); }
/* --- Contact Page --- */
.form-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-md); font-size: 15px; font-family: inherit; color: var(--text); background: var(--bg); transition: border-color 0.2s, box-shadow 0.2s; box-sizing: border-box; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { margin-top: 8px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.ci-icon { width: 44px; height: 44px; min-width: 44px; max-width: 44px; display: flex; align-items: center; justify-content: center; background: var(--bg-alt); border-radius: var(--radius-md); color: var(--primary); flex-shrink: 0; }
.ci-icon svg { width: 22px !important; height: 22px !important; flex-shrink: 0; }
.ci-label { font-weight: 600; font-size: 14px; color: var(--text); margin-bottom: 2px; }
.ci-value { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.ci-value a { color: var(--primary); text-decoration: none; }
.ci-value a:hover { text-decoration: underline; }
.qr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.qr-card { background: var(--bg-alt); border-radius: var(--radius-lg); padding: 24px; text-align: center; border: 1px solid var(--border); transition: box-shadow 0.2s; }
.qr-card:hover { box-shadow: var(--shadow-md); }
.qr-card h4 { font-size: 15px; margin-bottom: 14px; color: var(--text); }
.qr-card img { width: 160px; height: auto; border-radius: var(--radius-md); border: 1px solid var(--border); }
.qr-card p { font-size: 12px; color: var(--text-muted); margin-top: 10px; }
.contact-cta { background: var(--bg-alt); border-radius: var(--radius-lg); padding: 24px; margin-top: 32px; border: 1px solid var(--border); }
.contact-cta h4 { font-size: 15px; margin-bottom: 8px; color: var(--text); }
.contact-cta p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
@media (max-width: 768px) { .form-grid { grid-template-columns: 1fr; gap: 40px; } .qr-grid { grid-template-columns: 1fr; } }

/* --- Missing Utility Classes (Restored from online) --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.btn-outline-white { background: transparent; color: #ffffff; border: 2px solid rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #ffffff; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); padding: 0.5rem 1rem; border-radius: 100px; font-size: 0.85rem; margin-bottom: 2rem; border: 1px solid rgba(255,255,255,0.2); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-tag { display: inline-block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 0.5rem; }
.section-intro { font-size: 1.1rem; color: var(--text-light); margin-top: 0.5rem; }
.section-alt { background: var(--slate-100); }
.center { text-align: center; }
.grid-3col { grid-template-columns: repeat(3, 1fr); }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--amber); }
.fade-up { opacity: 1; transform: translateY(0); transition: opacity 0.6s, transform 0.6s; }
html.js-ready .fade-up { opacity: 0; transform: translateY(20px); }
html.js-ready .fade-up.visible { opacity: 1; transform: translateY(0); }
/* ===== Product Cards & Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.product-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--slate-100);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-card-img img {
  transform: scale(1.05);
}
.product-card-info {
  padding: 1rem 1.25rem 1.25rem;
}
.product-card-info h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
}
.product-card-info .product-cn {
  font-size: 0.8rem;
  color: var(--slate-500);
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.25rem 1rem;
  background: linear-gradient(transparent, rgba(15,23,42,0.8));
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* ===== Shipping Gallery — horizontal row ===== */
.shipping-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.shipping-gallery .ship-item {
  flex: 0 0 calc(33.333% - 14px);
  max-width: calc(33.333% - 14px);
  text-align: center;
}
.shipping-gallery .ship-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.shipping-gallery .ship-item p {
  margin-top: 8px;
  font-weight: 600;
  color: #1e293b;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .shipping-gallery .ship-item {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
@media (max-width: 480px) {
  .shipping-gallery .ship-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
