/* ============================================================
   SWISSIKON WORDPRESS THEME — MAIN STYLESHEET
   Converted from Next.js / Tailwind CSS
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --brand-yellow: #ED7D31;
  --brand-yellow-dark: #D35400;
  --brand-black: #111111;
  --brand-charcoal: #1f2937;
  --brand-gray-light: #f8f9fa;
  --brand-border: #e5e7eb;
  --radius-card: 20px;
  --radius-btn: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-xl: 0 10px 40px rgba(0,0,0,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: #fff; color: #111; font-family: 'Montserrat', sans-serif; overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; background: none; border: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--brand-gray-light); }
::-webkit-scrollbar-thumb { background: var(--brand-black); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-yellow); }

/* ============================================================ BUTTONS */
.btn-yellow {
  background: var(--brand-yellow); color: var(--brand-black);
  font-weight: 700; font-size: .75rem; border-radius: var(--radius-btn);
  border: 1px solid var(--brand-yellow); padding: .7rem 1.5rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  transition: all .25s; cursor: pointer;
}
.btn-yellow:hover { background: var(--brand-black); color: var(--brand-yellow); border-color: var(--brand-black); }

.btn-black {
  background: var(--brand-black); color: #fff;
  font-weight: 700; font-size: .75rem; border-radius: var(--radius-btn);
  border: 1px solid var(--brand-black); padding: .7rem 1.5rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  transition: all .25s; cursor: pointer;
}
.btn-black:hover { background: var(--brand-yellow); color: var(--brand-black); border-color: var(--brand-yellow); }

.btn-outline {
  background: transparent; color: #fff; font-weight: 700; font-size: .75rem;
  border-radius: var(--radius-btn); border: 1px solid #fff;
  padding: .7rem 1.5rem; display: inline-flex; align-items: center; gap: .4rem;
  transition: all .25s; cursor: pointer;
}
.btn-outline:hover { background: #fff; color: #000; }

/* ============================================================ LAYOUT */
.si-container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; width: 100%; }
@media (min-width: 640px)  { .si-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .si-container { padding: 0 2rem; } }

/* ============================================================ NAVBAR */
#si-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--brand-border);
  box-shadow: var(--shadow-sm); padding: .6rem 0;
}
.si-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.si-logo-wrap { display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0; }
.si-logo-link { display: flex; align-items: center; gap: .5rem; }
.si-logo-img { height: 2rem; width: auto; border-radius: 8px; border: 1px solid #f0f0f0; object-fit: contain; }
.si-brand-name { font-weight: 900; font-size: 1.4rem; letter-spacing: -.03em; color: var(--brand-black); }
.si-location { display: none; flex-direction: column; border-left: 1px solid var(--brand-border); padding-left: 1rem; }
@media (min-width: 1024px) { .si-location { display: flex; } }
.si-location-label { font-size: .6rem; font-weight: 800; color: var(--brand-black); text-transform: uppercase; letter-spacing: .08em; line-height: 1; }
.si-location-value { font-size: .6rem; color: #6b7280; margin-top: .15rem; }
.si-location-value:hover { color: var(--brand-yellow-dark); }

.si-search-form { flex: 1; max-width: 36rem; }
.si-search-wrap {
  position: relative; background: var(--brand-gray-light);
  border: 1px solid var(--brand-border); border-radius: 14px;
  transition: border-color .2s;
}
.si-search-wrap:focus-within { border-color: var(--brand-yellow); box-shadow: 0 0 0 3px rgba(237,125,49,.12); }
.si-search-input {
  width: 100%; background: transparent; border: none; outline: none;
  padding: .6rem 1rem .6rem 2.6rem; font-size: .75rem; color: var(--brand-charcoal); font-family: inherit;
}
.si-search-icon { position: absolute; left: .9rem; top: 50%; transform: translateY(-50%); color: #9ca3af; pointer-events: none; }

.si-nav-actions { display: flex; align-items: center; gap: .85rem; flex-shrink: 0; }
.si-icon-btn { position: relative; padding: .35rem; color: #4b5563; display: flex; align-items: center; font-size: .8rem; font-weight: 700; transition: color .2s; }
.si-icon-btn:hover { color: var(--brand-yellow); }
.si-badge {
  position: absolute; top: -.2rem; right: -.2rem;
  background: var(--brand-yellow); color: var(--brand-black);
  font-size: .5rem; font-weight: 900; width: 1rem; height: 1rem;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.si-cart-btn {
  display: flex; align-items: center; gap: .5rem; background: var(--brand-yellow); color: var(--brand-black);
  font-weight: 700; font-size: .7rem; border-radius: var(--radius-btn);
  padding: .55rem 1rem; border: 1px solid var(--brand-yellow); transition: all .2s;
}
.si-cart-btn:hover { background: var(--brand-black); color: var(--brand-yellow); border-color: var(--brand-black); }
.si-hamburger { display: flex; flex-direction: column; gap: 5px; padding: .35rem; color: #4b5563; }
@media (min-width: 768px) { .si-hamburger { display: none; } }

/* Mobile nav */
#si-mobile-nav { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.6); }
#si-mobile-nav.open { display: block; }
.si-mobile-panel {
  position: absolute; right: 0; top: 0; bottom: 0; width: 20rem;
  background: var(--brand-black); padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: space-between; overflow-y: auto;
}
.si-mobile-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 1rem; margin-bottom: 1.5rem; }
.si-mobile-title { font-size: 1.3rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; color: #fff; }
.si-mobile-close { color: #fff; font-size: 1.4rem; padding: .2rem; cursor: pointer; }
.si-mobile-link { display: block; font-weight: 800; font-size: 1rem; text-transform: uppercase; color: #fff; padding: .5rem 0; letter-spacing: .05em; transition: color .2s; }
.si-mobile-link:hover { color: var(--brand-yellow); }
.si-mobile-sub { display: flex; flex-direction: column; gap: .5rem; padding-left: 1rem; border-left: 1px solid rgba(255,255,255,.05); margin-top: .35rem; }
.si-mobile-sub a { font-size: .85rem; color: #9ca3af; transition: color .2s; }
.si-mobile-sub a:hover { color: var(--brand-yellow); }

/* Cats toggle */
#si-cats-toggle {
  position: fixed; left: 0; top: 50%; transform: translateY(-50%); z-index: 50;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--brand-black); color: #facc15;
  padding: 1rem .6rem; border-radius: 0 14px 14px 0;
  box-shadow: var(--shadow-xl); transition: background .2s, color .2s; border: none; cursor: pointer;
}
#si-cats-toggle:hover { background: #facc15; color: var(--brand-black); }
#si-cats-toggle span { font-size: .5rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; writing-mode: vertical-rl; transform: rotate(180deg); }

/* Category Sidebar */
#si-cat-backdrop { display: none; position: fixed; inset: 0; z-index: 250; background: rgba(0,0,0,.45); backdrop-filter: blur(4px); }
#si-cat-backdrop.open { display: block; }
#si-cat-sidebar {
  position: fixed; top: 0; left: 0; height: 100%; width: 18.75rem;
  background: #fff; z-index: 300; display: flex; flex-direction: column;
  transform: translateX(-100%); transition: transform .3s ease; box-shadow: var(--shadow-xl);
}
#si-cat-sidebar.open { transform: translateX(0); }
.si-sidebar-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; background: var(--brand-black); }
.si-sidebar-title { font-size: .9rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: #facc15; display: flex; align-items: center; gap: .5rem; }
.si-sidebar-close { color: #9ca3af; background: none; border: none; cursor: pointer; padding: .2rem; font-size: 1rem; }
.si-sidebar-close:hover { color: #fff; }
.si-sidebar-search { padding: .75rem 1rem; border-bottom: 1px solid var(--brand-border); background: #fafafa; }
.si-sidebar-search input { width: 100%; border: 1px solid var(--brand-border); border-radius: 10px; padding: .5rem .75rem; font-size: .75rem; font-family: inherit; outline: none; transition: border-color .2s; }
.si-sidebar-search input:focus { border-color: var(--brand-yellow); box-shadow: 0 0 0 2px rgba(237,125,49,.15); }
.si-cat-list { flex: 1; overflow-y: auto; padding: .75rem .5rem; }
.si-cat-item { display: flex; align-items: center; justify-content: space-between; padding: .6rem .75rem; border-radius: 10px; transition: background .15s; color: var(--brand-charcoal); font-size: .75rem; font-weight: 600; }
.si-cat-item:hover { background: #fef9c3; color: var(--brand-black); }
.si-cat-item-left { display: flex; align-items: center; gap: .75rem; }
.si-cat-count { font-size: .55rem; font-weight: 700; background: #f3f4f6; color: #9ca3af; border-radius: 999px; padding: .15rem .5rem; }
.si-sidebar-footer { padding: 1rem; border-top: 1px solid var(--brand-border); }
.si-view-all-btn { display: flex; align-items: center; justify-content: center; gap: .5rem; width: 100%; background: var(--brand-black); color: #facc15; font-weight: 800; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; padding: .75rem; border-radius: 12px; transition: all .2s; }
.si-view-all-btn:hover { background: #facc15; color: var(--brand-black); }

/* ============================================================ HERO */
#si-hero { position: relative; min-height: 75vh; display: flex; align-items: center; padding-top: 5.5rem; padding-bottom: 4rem; overflow: hidden; border-bottom: 1px solid var(--brand-border); }
.si-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.si-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.52); }
.si-hero-content { position: relative; z-index: 10; max-width: 36rem; }
.si-hero-badge { display: inline-flex; align-items: center; gap: .4rem; background: var(--brand-black); color: var(--brand-yellow); padding: .4rem .9rem; border-radius: 999px; font-size: .6rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.5rem; }
.si-ping { width: 6px; height: 6px; background: var(--brand-yellow); border-radius: 50%; animation: si-ping 1.2s infinite; }
@keyframes si-ping { 75%,100%{transform:scale(2);opacity:0} }
.si-hero-h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900; color: #fff; letter-spacing: .03em; line-height: .95; margin-bottom: 1.25rem; text-transform: uppercase; }
.si-hero-h1 span { color: var(--brand-yellow-dark); }
.si-hero-sub { color: #e5e7eb; font-size: .85rem; line-height: 1.7; margin-bottom: 2rem; }
.si-hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ============================================================ EXPRESS CATS */
#si-express-cats { padding: 3rem 0; background: #fff; border-bottom: 1px solid var(--brand-border); scroll-margin-top: 5rem; }
.si-express-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (min-width: 640px) { .si-express-grid { grid-template-columns: repeat(8, 1fr); } }
.si-cat-pill { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .6rem; transition: transform .2s; }
.si-cat-pill:hover { transform: translateY(-3px); }
.si-cat-pill-img { width: 4rem; height: 4rem; border-radius: 50%; overflow: hidden; border: 1px solid #f0f0f0; box-shadow: var(--shadow-sm); transition: box-shadow .2s; }
@media (min-width: 640px) { .si-cat-pill-img { width: 5rem; height: 5rem; } }
.si-cat-pill:hover .si-cat-pill-img { box-shadow: var(--shadow-md); border-color: rgba(237,125,49,.3); }
.si-cat-pill-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.si-cat-pill:hover .si-cat-pill-img img { transform: scale(1.07); }
.si-cat-pill-name { font-size: .6rem; font-weight: 700; color: var(--brand-charcoal); line-height: 1.3; max-width: 5rem; transition: color .2s; }
.si-cat-pill:hover .si-cat-pill-name { color: var(--brand-yellow-dark); }

/* ============================================================ SECTION HEADINGS */
.si-overline { display: block; font-size: .6rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; color: var(--brand-yellow-dark); margin-bottom: .5rem; }
.si-section-h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; text-transform: uppercase; letter-spacing: .04em; line-height: 1; color: var(--brand-black); }
.si-section-sub { font-size: .8rem; color: #6b7280; margin-top: .75rem; line-height: 1.7; }

/* ============================================================ WHY US */
#si-why-us { padding: 5rem 0; background: var(--brand-gray-light); border-top: 1px solid var(--brand-border); border-bottom: 1px solid var(--brand-border); }
.si-why-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 3.5rem; }
@media (min-width: 768px)  { .si-why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .si-why-grid { grid-template-columns: repeat(3, 1fr); } }
.si-why-card { background: #fff; border: 1px solid #f0f0f0; border-radius: var(--radius-card); padding: 2rem; display: flex; align-items: flex-start; gap: 1rem; box-shadow: var(--shadow-sm); transition: box-shadow .2s; }
.si-why-card:hover { box-shadow: var(--shadow-md); }
.si-why-icon { font-size: 1.5rem; padding: .75rem; background: rgba(237,125,49,.1); border-radius: 12px; color: var(--brand-yellow-dark); flex-shrink: 0; }
.si-why-card h4 { font-size: .9rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .4rem; color: var(--brand-black); }
.si-why-card p { font-size: .72rem; color: #6b7280; line-height: 1.7; }

/* ============================================================ CATEGORY CARDS */
#si-shop-cats { padding: 5rem 0; }
.si-cat-cards-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 640px)  { .si-cat-cards-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .si-cat-cards-grid { grid-template-columns: repeat(4, 1fr); } }
.si-cat-card { position: relative; height: 22.5rem; border-radius: var(--radius-card); overflow: hidden; display: block; border: 1px solid #f0f0f0; }
.si-cat-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s ease; }
.si-cat-card:hover .si-cat-card-bg { transform: scale(1.1); }
.si-cat-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.88), rgba(0,0,0,.28) 55%, rgba(0,0,0,.18)); transition: all .3s; }
.si-cat-card-body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; }
.si-cat-card h3 { font-size: 1.7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; color: #fff; transition: color .2s; }
.si-cat-card:hover h3 { color: var(--brand-yellow); }
.si-cat-card p { font-size: .68rem; color: #d1d5db; line-height: 1.6; margin-top: .4rem; opacity: 0; transition: opacity .3s; }
.si-cat-card:hover p { opacity: 1; }
.si-cat-card-cta { font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--brand-yellow); margin-top: .75rem; display: flex; align-items: center; gap: .3rem; }

/* ============================================================ VAULT SECTION */
#si-vault { padding: 5rem 0; background: var(--brand-black); color: #fff; position: relative; overflow: hidden; }
.si-vault-glow { position: absolute; top: 50%; left: 0; width: 24rem; height: 24rem; background: rgba(237,125,49,.05); filter: blur(120px); border-radius: 50%; pointer-events: none; }
.si-vault-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 4rem; }
@media (min-width: 640px)  { .si-vault-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .si-vault-grid { grid-template-columns: repeat(4, 1fr); } }
.si-vault-card { position: relative; height: 23.75rem; border-radius: var(--radius-card); overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem; border: 1px solid rgba(255,255,255,.1); transition: border-color .3s; }
.si-vault-card:hover { border-color: rgba(237,125,49,.3); }
.si-vault-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s; }
.si-vault-card:hover .si-vault-bg { transform: scale(1.05); }
.si-vault-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.95), rgba(0,0,0,.35) 55%, rgba(0,0,0,.1)); }
.si-vault-badge { position: absolute; top: 1rem; left: 1rem; z-index: 10; background: var(--brand-yellow); color: var(--brand-black); font-size: .55rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; padding: .25rem .65rem; border-radius: 14px; }
.si-vault-body { position: relative; z-index: 10; }
.si-vault-name { font-size: .95rem; font-weight: 700; color: #fff; line-height: 1.35; margin-bottom: .35rem; transition: color .25s; }
.si-vault-card:hover .si-vault-name { color: var(--brand-yellow); }
.si-vault-desc { font-size: .65rem; color: #9ca3af; line-height: 1.6; }
.si-vault-footer { display: flex; align-items: center; justify-content: space-between; margin-top: .75rem; padding-top: .75rem; border-top: 1px solid rgba(255,255,255,.1); }
.si-vault-price { font-size: .85rem; font-weight: 900; color: var(--brand-yellow); }
.si-vault-price-old { font-size: .65rem; color: #6b7280; text-decoration: line-through; margin-left: .3rem; }

/* ============================================================ REVIEWS */
#si-reviews { padding: 4rem 0; background: #fff; border-top: 1px solid var(--brand-border); }
.si-reviews-header { text-align: center; margin-bottom: 2rem; }
.si-star { color: var(--brand-yellow); }
.si-review-box { background: var(--brand-gray-light); border: 1px solid var(--brand-border); border-radius: var(--radius-card); padding: 2.5rem; text-align: center; }
.si-review-text { font-style: italic; font-size: .95rem; font-weight: 600; color: var(--brand-charcoal); line-height: 1.8; max-width: 42rem; margin: 0 auto; }
.si-review-meta { display: flex; align-items: center; justify-content: center; gap: .75rem; margin-top: 1rem; font-size: .75rem; }
.si-review-author { font-weight: 900; color: var(--brand-charcoal); }
.si-review-time { color: #9ca3af; font-weight: 600; }
.si-review-dots { display: flex; justify-content: center; gap: .4rem; margin-top: 1.5rem; }
.si-review-dot { width: 8px; height: 8px; border-radius: 50%; background: #d1d5db; border: none; cursor: pointer; transition: background .2s; padding: 0; }
.si-review-dot.active { background: var(--brand-yellow-dark); }

/* ============================================================ FOOTER */
#si-footer { background: var(--brand-black); color: #fff; padding: 4rem 0 2rem; font-family: 'Montserrat', sans-serif; }
.si-footer-top { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (min-width: 1024px) { .si-footer-top { grid-template-columns: 1fr 2fr; } }
.si-footer-brand { font-size: 1.8rem; font-weight: 900; color: #fff; }
.si-footer-brand sup { color: var(--brand-yellow); font-size: .6rem; font-weight: 900; position: relative; top: -.5rem; }
.si-footer-desc { font-size: .8rem; color: #9ca3af; line-height: 1.7; max-width: 22rem; margin-top: .75rem; }
.si-newsletter-box { display: flex; flex-direction: column; gap: 1rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.05); border-radius: var(--radius-card); padding: 1.5rem; }
@media (min-width: 768px) { .si-newsletter-box { flex-direction: row; align-items: center; justify-content: space-between; } }
.si-newsletter-title { font-size: .85rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--brand-yellow); margin-bottom: .2rem; }
.si-newsletter-sub { font-size: .7rem; color: #9ca3af; }
.si-newsletter-form { display: flex; gap: .5rem; width: 100%; max-width: 28rem; }
.si-newsletter-input { flex: 1; background: #000; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: .65rem 1rem; font-size: .8rem; color: #fff; font-family: inherit; outline: none; transition: border-color .2s; }
.si-newsletter-input:focus { border-color: var(--brand-yellow); }
.si-newsletter-input::placeholder { color: #6b7280; }
.si-footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (min-width: 768px) { .si-footer-links { grid-template-columns: repeat(4, 1fr); } }
.si-footer-col-title { font-size: .65rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; color: var(--brand-yellow); margin-bottom: 1rem; border-left: 2px solid var(--brand-yellow); padding-left: .5rem; }
.si-footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.si-footer-col ul li a { font-size: .8rem; color: #9ca3af; transition: color .2s; }
.si-footer-col ul li a:hover { color: #fff; }
.si-hq-item { display: flex; align-items: flex-start; gap: .5rem; font-size: .8rem; color: #9ca3af; margin-bottom: .65rem; }
.si-hq-icon { color: var(--brand-yellow); flex-shrink: 0; margin-top: .1rem; }
.si-footer-badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .75rem; }
.si-badge-item { display: flex; align-items: center; gap: .4rem; font-weight: 700; color: #fff; }
.si-payment-tags { display: flex; gap: 1rem; align-items: center; color: #6b7280; font-size: .7rem; }
.si-pay-tag { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 4px; padding: .2rem .5rem; font-size: .6rem; font-weight: 700; color: #fff; font-family: monospace; }
.si-footer-bottom { display: flex; flex-direction: column; gap: 1rem; padding-top: 2rem; font-size: .7rem; color: #6b7280; }
@media (min-width: 768px) { .si-footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.si-footer-legal { display: flex; gap: 1.5rem; }
.si-footer-legal a { color: #6b7280; transition: color .2s; }
.si-footer-legal a:hover { color: #fff; }

/* ============================================================ WooCommerce Overrides */
.woocommerce-page body, body.woocommerce { padding-top: 5.5rem; }
.woocommerce .woocommerce-breadcrumb { font-size: .75rem; color: #9ca3af; }
.woocommerce ul.products li.product { background: #fff; border: 1px solid #f0f0f0; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .3s, transform .3s; }
.woocommerce ul.products li.product:hover { box-shadow: var(--shadow-xl); transform: translateY(-3px); }
.woocommerce ul.products li.product a img { width: 100%; height: 14rem; object-fit: cover; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: .9rem; font-weight: 700; padding: .75rem 1rem 0; }
.woocommerce ul.products li.product .price { padding: .25rem 1rem .5rem; font-weight: 800; color: var(--brand-black); }
.woocommerce ul.products li.product .price ins { text-decoration: none; color: var(--brand-yellow-dark); }
.woocommerce ul.products li.product .price del { color: #9ca3af; }
.woocommerce ul.products li.product .button { display: block; margin: .5rem 1rem 1rem; background: var(--brand-yellow); color: var(--brand-black); font-weight: 800; font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; padding: .6rem 1rem; border-radius: var(--radius-btn); text-align: center; transition: all .2s; border: none; }
.woocommerce ul.products li.product .button:hover { background: var(--brand-black); color: var(--brand-yellow); }

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button { background: var(--brand-yellow); color: var(--brand-black); font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; border-radius: var(--radius-btn); padding: .7rem 1.5rem; border: none; transition: all .2s; }
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover { background: var(--brand-black); color: var(--brand-yellow); }
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt { background: var(--brand-black); color: #fff; }
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover { background: var(--brand-yellow); color: var(--brand-black); }

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select { border: 1px solid var(--brand-border); border-radius: 10px; padding: .65rem 1rem; font-family: inherit; font-size: .85rem; width: 100%; outline: none; transition: border-color .2s; }
.woocommerce form .form-row input.input-text:focus, .woocommerce form .form-row textarea:focus { border-color: var(--brand-yellow); box-shadow: 0 0 0 3px rgba(237,125,49,.12); }

.woocommerce-message, .woocommerce-info { border-top-color: var(--brand-yellow) !important; }
.woocommerce-message::before, .woocommerce-info::before { color: var(--brand-yellow) !important; }

/* ============================================================ CONTACT PAGE */
.si-contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .si-contact-grid { grid-template-columns: 1fr 1fr; } }
.si-contact-form input, .si-contact-form textarea, .si-contact-form select { width: 100%; border: 1px solid var(--brand-border); border-radius: 10px; padding: .65rem 1rem; font-family: inherit; font-size: .85rem; outline: none; transition: border-color .2s; background: #fafafa; }
.si-contact-form input:focus, .si-contact-form textarea:focus { border-color: var(--brand-yellow); box-shadow: 0 0 0 3px rgba(237,125,49,.12); }
.si-contact-form label { font-size: .75rem; font-weight: 700; color: var(--brand-charcoal); display: block; margin-bottom: .4rem; }
.si-contact-form .form-group { margin-bottom: 1.25rem; }

/* ============================================================ BLOG */
.si-blog-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px)  { .si-blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .si-blog-grid { grid-template-columns: repeat(3, 1fr); } }
.si-blog-card { background: #fff; border: 1px solid #f0f0f0; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .3s, transform .3s; }
.si-blog-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-3px); }
.si-blog-img { height: 12rem; overflow: hidden; }
.si-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.si-blog-card:hover .si-blog-img img { transform: scale(1.06); }
.si-blog-body { padding: 1.5rem; }
.si-blog-cat { font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--brand-yellow-dark); margin-bottom: .5rem; }
.si-blog-title { font-size: .95rem; font-weight: 700; color: var(--brand-black); line-height: 1.4; margin-bottom: .5rem; transition: color .2s; }
.si-blog-card:hover .si-blog-title { color: var(--brand-yellow-dark); }
.si-blog-excerpt { font-size: .75rem; color: #6b7280; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.si-blog-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; font-size: .7rem; color: #9ca3af; }

/* ============================================================ PAGE HERO BANNER */
.si-page-hero { background: var(--brand-black); color: #fff; padding: 7rem 0 3rem; text-align: center; }
.si-page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.si-page-hero p { font-size: .85rem; color: #9ca3af; margin-top: .75rem; }

/* ============================================================ UTILITIES */
.text-center { text-align: center; }
.text-left { text-align: left; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: .5rem; }
.gap-4 { gap: 1rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-12 { margin-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.hidden { display: none !important; }
