@font-face {
      font-family: 'Degular';
      src: url('/fonts/Degular-Regular.woff2') format('woff2');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Degular';
      src: url('/fonts/Degular-Medium.woff2') format('woff2');
      font-weight: 500;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Degular';
      src: url('/fonts/Degular-Semibold.woff2') format('woff2');
      font-weight: 600;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Degular';
      src: url('/fonts/Degular-Bold.woff2') format('woff2');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    :root {
      --brand-orange: #c03800;
      --bg-light: #f1f1f1;
      --text-dark: #191919;
      --white: #ffffff;
      --text-muted: #666666;
      --border-light: rgba(25, 25, 25, 0.1);
      --accent-navy: #1e3a5f;
    }

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

    html, body {
      min-height: 100%;
    }

    body {
      background: #191919;
      color: var(--text-dark);
      font-family: 'Degular', -apple-system, BlinkMacSystemFont, sans-serif;
      font-weight: 500;
      line-height: 1.6;
    }

    /* ===== MAIN ===== */
    main {
      max-width: 900px;
      margin: 16px auto 40px;
      padding: 0 20px;
    }
    @media (min-width: 768px) {
      main {
        margin: 20px auto 60px;
        padding: 0 40px;
      }
    }

    /* ===== PAGE CARD ===== */
    .page-card {
      background: var(--white);
      padding: 40px 24px;
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      margin-bottom: 24px;
    }
    @media (min-width: 768px) {
      .page-card {
        padding: 60px 50px;
      }
    }

    /* ===== TYPOGRAPHY ===== */
    h1 {
      font-size: 32px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
      color: var(--text-dark);
    }
    @media (min-width: 768px) {
      h1 {
        font-size: 48px;
        margin-bottom: 24px;
      }
    }

    h2 {
      font-size: 24px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 16px;
      letter-spacing: -0.01em;
      color: var(--text-dark);
    }
    @media (min-width: 768px) {
      h2 { font-size: 30px; }
    }

    h3 {
      font-size: 20px;
      font-weight: 600;
      line-height: 1.3;
      margin-bottom: 12px;
      color: var(--text-dark);
    }
    @media (min-width: 768px) {
      h3 { font-size: 24px; }
    }

    p {
      font-size: 17px;
      font-weight: 500;
      line-height: 1.7;
      margin-bottom: 20px;
      color: var(--text-dark);
    }
    @media (min-width: 768px) {
      p { font-size: 18px; margin-bottom: 24px; }
    }

    strong { font-weight: 600; }

    main a {
      color: var(--accent-navy);
      transition: opacity 0.2s ease;
    }
    main a:hover { opacity: 0.7; }

    main ul, main ol {
      margin: 16px 0;
      padding-left: 28px;
    }

    main li {
      font-size: 17px;
      font-weight: 500;
      line-height: 1.7;
      margin-bottom: 10px;
    }
    @media (min-width: 768px) {
      main li { font-size: 18px; }
    }

    /* ===== CALLOUT BOX (Watts style) ===== */
    .callout {
      position: relative;
      background: var(--brand-orange);
      border-radius: 4px;
      padding: 8px;
      margin: 32px 0;
    }

    .callout-content {
      background: var(--white);
      color: var(--text-dark);
      border-radius: 12px;
      padding: 24px 28px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    @media (min-width: 768px) {
      .callout-content { padding: 28px 36px; }
    }

    .callout p:last-child { margin-bottom: 0; }

    /* ===== PAGE INTRO SECTION ===== */
    .page-intro {
      margin-bottom: 40px;
      padding-bottom: 40px;
      border-bottom: 2px solid var(--border-light);
    }

    .intro-subheading {
      font-size: 18px;
      font-weight: 500;
      line-height: 1.6;
      color: var(--text-muted);
      margin-bottom: 28px;
    }
    @media (min-width: 768px) {
      .intro-subheading { font-size: 20px; }
    }

    /* ===== CALCULATOR FORM CARD ===== */
    .calc-form-card {
      background: var(--white);
      border-radius: 12px;
      padding: 32px 24px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      border: 1px solid var(--border-light);
    }
    @media (min-width: 768px) {
      .calc-form-card { padding: 40px 40px; }
    }

    /* ===== FORM FIELDS ===== */
    .form-group {
      margin-bottom: 28px;
    }

    .form-label {
      display: block;
      font-size: 15px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 8px;
    }

    .form-helper {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-muted);
      margin-top: 6px;
      margin-bottom: 0;
    }

    .form-input {
      width: 100%;
      padding: 12px 16px;
      font-family: inherit;
      font-size: 16px;
      font-weight: 500;
      color: var(--text-dark);
      background: var(--bg-light);
      border: 2px solid var(--border-light);
      border-radius: 8px;
      transition: border-color 0.2s ease;
      appearance: none;
      -webkit-appearance: none;
    }

    .form-input:focus {
      outline: none;
      border-color: var(--brand-orange);
    }

    .form-input::placeholder {
      color: rgba(25,25,25,0.35);
    }

    /* Age selects - side by side */
    .age-selects {
      display: flex;
      gap: 12px;
    }

    .age-select-wrap {
      flex: 1;
    }

    .age-select-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      display: block;
      margin-bottom: 6px;
    }

    select.form-input {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
      cursor: pointer;
    }

    /* ===== SIZE RADIO CARDS ===== */
    .size-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    @media (min-width: 640px) {
      .size-grid { grid-template-columns: repeat(4, 1fr); }
    }

    .size-card-label {
      display: flex;
      cursor: pointer;
      height: 100%;
    }

    .size-card-label input[type="radio"] {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }

    .size-card-inner {
      display: flex;
      flex-direction: column;
      flex: 1;
      padding: 14px 12px;
      border: 2px solid var(--border-light);
      border-radius: 10px;
      background: var(--bg-light);
      transition: border-color 0.18s ease, background 0.18s ease;
    }

    .size-card-label:hover .size-card-inner {
      border-color: rgba(192, 56, 0, 0.35);
    }

    .size-card-label input[type="radio"]:checked + .size-card-inner {
      border-color: var(--brand-orange);
      background: rgba(192, 56, 0, 0.06);
    }

    .size-card-label input[type="radio"]:focus-visible + .size-card-inner {
      outline: 2px solid var(--brand-orange);
      outline-offset: 2px;
    }

    .size-card-name {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 3px;
    }

    .size-card-weight {
      font-size: 12px;
      font-weight: 600;
      color: var(--brand-orange);
      margin-bottom: 4px;
    }

    .size-card-breeds {
      font-size: 11px;
      font-weight: 500;
      color: var(--text-muted);
      line-height: 1.4;
    }

    /* ===== LIFESTYLE TOGGLE ===== */
    .lifestyle-toggle {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: none;
      border: none;
      font-family: inherit;
      font-size: 15px;
      font-weight: 600;
      color: var(--brand-orange);
      cursor: pointer;
      padding: 0;
      margin-bottom: 20px;
      transition: opacity 0.2s ease;
    }
    .lifestyle-toggle:hover { opacity: 0.75; }

    .lifestyle-toggle-icon {
      font-size: 18px;
      line-height: 1;
      transition: transform 0.25s ease;
    }

    .lifestyle-toggle.open .lifestyle-toggle-icon {
      transform: rotate(45deg);
    }

    .lifestyle-section {
      display: none;
      padding-top: 4px;
    }

    .lifestyle-section.open {
      display: block;
    }

    /* ===== BUTTON GROUP (body condition / activity) ===== */
    .btn-group {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .btn-option {
      flex: 1;
      min-width: 80px;
      padding: 10px 14px;
      font-family: inherit;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-dark);
      background: var(--bg-light);
      border: 2px solid var(--border-light);
      border-radius: 8px;
      cursor: pointer;
      transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
      text-align: center;
    }

    .btn-option:hover {
      border-color: rgba(192, 56, 0, 0.35);
    }

    .btn-option.active {
      border-color: var(--brand-orange);
      background: rgba(192, 56, 0, 0.06);
      color: var(--brand-orange);
    }

    /* ===== SUBMIT BUTTON ===== */
    .calc-submit-btn {
      width: 100%;
      padding: 16px 24px;
      font-family: inherit;
      font-size: 17px;
      font-weight: 700;
      color: var(--white);
      background: var(--brand-orange);
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: opacity 0.2s ease, transform 0.1s ease;
      margin-top: 8px;
    }

    .calc-submit-btn:hover {
      opacity: 0.88;
    }

    .calc-submit-btn:active {
      transform: scale(0.99);
    }

    /* ===== ERROR MESSAGE ===== */
    .form-error {
      display: none;
      font-size: 14px;
      font-weight: 600;
      color: #c03800;
      background: rgba(192, 56, 0, 0.08);
      border: 1px solid rgba(192, 56, 0, 0.2);
      border-radius: 8px;
      padding: 10px 14px;
      margin-top: 16px;
    }
    .form-error.visible {
      display: block;
    }

    /* ===== RESULTS SECTION ===== */
    #results-section {
      display: none;
      opacity: 0;
      transition: opacity 0.4s ease;
      margin-top: 32px;
    }

    #results-section.visible {
      opacity: 1;
    }

    .results-card {
      background: var(--white);
      border-radius: 12px;
      padding: 40px 24px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      border: 1px solid var(--border-light);
    }
    @media (min-width: 768px) {
      .results-card { padding: 48px 50px; }
    }

    /* Big number + badge */
    .results-hero {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }

    .results-big-number {
      font-size: 72px;
      font-weight: 700;
      line-height: 1;
      color: var(--brand-orange);
      letter-spacing: -0.03em;
    }
    @media (min-width: 768px) {
      .results-big-number { font-size: 96px; }
    }

    .life-stage-badge {
      display: inline-block;
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      background: var(--brand-orange);
      color: var(--white);
    }

    .results-headline {
      font-size: 20px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 32px;
      line-height: 1.4;
    }
    @media (min-width: 768px) {
      .results-headline { font-size: 22px; }
    }

    /* VS rule callout */
    .results-vs-callout {
      position: relative;
      background: var(--brand-orange);
      border-radius: 4px;
      padding: 8px;
      margin: 24px 0 32px;
    }

    .results-vs-callout .callout-content {
      font-size: 16px;
      font-weight: 500;
      color: var(--text-dark);
    }
    @media (min-width: 768px) {
      .results-vs-callout .callout-content { font-size: 17px; }
    }

    .results-vs-callout .callout-content p {
      margin-bottom: 0;
    }

    /* Life stage card */
    .life-stage-card {
      position: relative;
      background: var(--brand-orange);
      border-radius: 4px;
      padding: 8px;
      margin: 24px 0;
    }

    .life-stage-card .callout-content {
      border-radius: 12px;
    }

    .life-stage-card h3 {
      color: var(--brand-orange);
      margin-bottom: 12px;
    }

    .life-stage-card p {
      margin-bottom: 12px;
    }

    /* Priorities section */
    .priorities-section {
      margin: 32px 0;
      padding: 28px;
      background: var(--bg-light);
      border-radius: 12px;
      border-left: 4px solid var(--brand-orange);
    }

    .priorities-section h3 {
      font-size: 18px;
      color: var(--brand-orange);
      margin-bottom: 16px;
    }
    @media (min-width: 768px) {
      .priorities-section h3 { font-size: 20px; }
    }

    .priorities-section ul {
      margin: 0;
      padding-left: 22px;
    }

    .priorities-section li {
      font-size: 16px;
      margin-bottom: 10px;
    }
    .priorities-section li:last-child { margin-bottom: 0; }
    .priorities-section li a {
      color: var(--brand-orange);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .priorities-section li a:hover { opacity: 0.8; }
    @media (min-width: 768px) {
      .priorities-section li { font-size: 17px; }
    }

    /* Share section */
    .share-section {
      margin: 32px 0;
      padding: 24px 28px;
      background: var(--bg-light);
      border-radius: 12px;
    }

    .share-section h3 {
      font-size: 17px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 10px;
    }

    .share-text-box {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-dark);
      background: var(--white);
      border: 1px solid var(--border-light);
      border-radius: 8px;
      padding: 14px 16px;
      margin-bottom: 12px;
      line-height: 1.5;
    }

    .copy-btn {
      display: inline-block;
      padding: 10px 20px;
      font-family: inherit;
      font-size: 14px;
      font-weight: 600;
      color: var(--white);
      background: var(--text-dark);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: opacity 0.2s ease;
    }

    .copy-btn:hover { opacity: 0.8; }

    .copy-btn.copied {
      background: #2e7d32;
    }

    /* Email CTA in results */
    .email-cta-callout {
      position: relative;
      background: var(--brand-orange);
      border-radius: 4px;
      padding: 8px;
      margin: 32px 0 0;
    }

    .email-cta-callout .callout-content {
      padding: 28px 28px;
    }

    .email-cta-callout h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 8px;
    }
    @media (min-width: 768px) {
      .email-cta-callout h3 { font-size: 22px; }
    }

    .email-cta-callout p {
      font-size: 16px;
      color: var(--text-muted);
      margin-bottom: 20px;
    }

    .email-cta-form {
      display: flex;
      gap: 10px;
      flex-direction: column;
    }
    @media (min-width: 480px) {
      .email-cta-form { flex-direction: row; }
    }

    .email-cta-form input[type="email"] {
      flex: 1;
      min-width: 0;
      padding: 12px 16px;
      border: 2px solid var(--border-light);
      border-radius: 8px;
      font-family: inherit;
      font-size: 15px;
      font-weight: 500;
      background: var(--white);
      color: var(--text-dark);
      transition: border-color 0.2s ease;
    }

    .email-cta-form input[type="email"]::placeholder {
      color: rgba(25,25,25,0.4);
    }

    .email-cta-form input[type="email"]:focus {
      outline: none;
      border-color: var(--brand-orange);
    }

    .email-cta-form button[type="submit"] {
      padding: 12px 20px;
      background: var(--brand-orange);
      color: var(--white);
      border: none;
      border-radius: 8px;
      font-family: inherit;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
      flex-shrink: 0;
      transition: opacity 0.2s ease;
    }

    .email-cta-form button[type="submit"]:hover {
      opacity: 0.85;
    }

    .email-cta-success {
      font-size: 16px;
      font-weight: 600;
      color: #2e7d32;
      margin: 0;
      display: none;
    }

    /* ===== FAQ SECTION ===== */
    .faq-section {
      margin-top: 48px;
      padding-top: 48px;
      border-top: 2px solid var(--border-light);
    }

    .faq-section h2 {
      margin-bottom: 28px;
    }

    .faq-item {
      margin-bottom: 24px;
      padding: 24px 28px;
      background: var(--bg-light);
      border-radius: 12px;
      border-left: 4px solid var(--brand-orange);
    }

    .faq-item h3 {
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--brand-orange);
    }
    @media (min-width: 768px) {
      .faq-item h3 { font-size: 19px; }
    }

    .faq-item p {
      margin-bottom: 0;
      font-size: 16px;
    }
    @media (min-width: 768px) {
      .faq-item p { font-size: 17px; }
    }

    /* ===== FOOTER ===== */
    .footer-wrapper {
      background: #191919;
      padding: 0 12px 12px;
      margin-top: 80px;
    }

    footer {
      background: var(--brand-orange);
      color: var(--white);
      padding: 45px 40px 20px;
      border-radius: 200px 16px 16px 200px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      min-height: 144px;
    }
    @media (min-width: 768px) {
      footer {
        padding: 63px 60px 24px;
        min-height: 207px;
        border-radius: 300px 16px 16px 300px;
      }
    }

    .footer-content {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-left {
      flex: 1;
    }

    .footer-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 24px;
      flex: 1;
    }
    @media (min-width: 768px) {
      .footer-right { gap: 32px; }
    }

    .footer-right-text {
      text-align: right;
    }

    .footer-logo {
      height: 100px;
      margin-top: 128px;
      margin-bottom: 0;
    }
    @media (min-width: 768px) {
      .footer-logo {
        height: 160px;
        margin-top: 160px;
        margin-bottom: 0;
      }
    }

    footer p {
      color: var(--white);
      font-size: 15px;
      font-weight: 500;
      margin-bottom: 12px;
    }

    footer a {
      color: var(--white);
      text-decoration: none;
      font-weight: 500;
    }
    footer a:hover {
      text-decoration: underline;
    }

    @media (max-width: 767px) {
      footer {
        padding: 32px 20px 16px !important;
        border-radius: 100px 16px 16px 100px !important;
        min-height: auto !important;
      }

      .footer-content {
        flex-direction: column !important;
        align-items: center !important;
        gap: 24px !important;
      }

      .footer-left {
        flex: none !important;
        width: 100% !important;
      }

      .footer-right {
        flex: none !important;
        width: 100% !important;
        align-items: center !important;
        gap: 16px !important;
      }

      .footer-right-text {
        text-align: center !important;
      }

      .footer-logo {
        height: 60px !important;
        margin-top: 0 !important;
      }

      footer p {
        font-size: 14px !important;
        margin-bottom: 8px !important;
      }
    }

    /* ===== STICKY EMAIL CTA (mobile only) ===== */
    .sticky-email-cta {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--brand-orange);
      color: #ffffff;
      padding: 16px 20px 24px;
      z-index: 500;
      box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
      border-radius: 16px 16px 0 0;
      transform: translateY(100%);
      transition: transform 0.35s ease;
    }
    .sticky-email-cta.visible {
      transform: translateY(0);
    }
    @media (min-width: 768px) {
      .sticky-email-cta { display: none !important; }
    }
    .sticky-cta-close {
      position: absolute;
      top: 12px;
      right: 16px;
      background: none;
      border: none;
      color: #ffffff;
      font-size: 22px;
      line-height: 1;
      cursor: pointer;
      padding: 4px 6px;
      opacity: 0.75;
    }
    .sticky-cta-close:hover { opacity: 1; }
    .sticky-cta-heading {
      font-size: 16px;
      font-weight: 700;
      margin: 0 0 12px;
      color: #ffffff;
      padding-right: 36px;
    }
    .sticky-cta-form {
      display: flex;
      gap: 8px;
    }
    .sticky-cta-form input[type="email"] {
      flex: 1;
      min-width: 0;
      padding: 11px 14px;
      border: none;
      border-radius: 8px;
      font-family: inherit;
      font-size: 15px;
      background: #ffffff;
      color: #191919;
    }
    .sticky-cta-form input[type="email"]::placeholder {
      color: rgba(25,25,25,0.4);
    }
    .sticky-cta-form input[type="email"]:focus {
      outline: none;
    }
    .sticky-cta-form button[type="submit"] {
      padding: 11px 16px;
      background: #191919;
      color: #ffffff;
      border: none;
      border-radius: 8px;
      font-family: inherit;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .sticky-cta-form button[type="submit"]:hover {
      opacity: 0.85;
    }
    .sticky-cta-success {
      font-size: 16px;
      font-weight: 500;
      color: #ffffff;
      margin: 0;
      display: none;
    }

  /* ===== Shared footer styles ===== */
  .g-footer { display: block; }
  .g-footer__bg-orange {
    background: #c03800;
    color: #f1f1f1;
    padding: 48px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .g-footer__container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  .g-footer__content { display: flex; flex-direction: column; gap: 8px; }
  .g-footer__title {
    font-family: 'Degular', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: #f1f1f1;
    max-width: 280px;
  }
  .g-footer__bg-orange p { color: #f1f1f1; font-size: 14px; margin: 0; }
  .g-footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
  .g-footer__linklist { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
  .g-footer__linklist__title {
    font-family: 'Degular', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(241,241,241,0.6);
    margin: 0 0 4px;
  }
  .g-footer__linklist__item { list-style: none; }
  .g-footer__linklist__item a {
    font-family: 'Degular', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #f1f1f1;
    text-decoration: none;
  }
  .g-footer__linklist__item a:hover { text-decoration: underline; }
  .g-footer__connect { display: flex; flex-direction: column; gap: 24px; }
  .c-email-capture-shopify__title {
    font-family: 'Degular', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(241,241,241,0.6);
    margin: 0 0 10px;
  }
  .c-form__fields { display: flex; gap: 8px; flex-wrap: wrap; }
  .c-field input[type=email] {
    font-family: 'Degular', sans-serif;
    font-size: 14px;
    padding: 10px 14px;
    border: 1px solid rgba(241,241,241,0.4);
    background: rgba(241,241,241,0.1);
    color: #f1f1f1;
    border-radius: 6px;
    min-width: 180px;
    outline: none;
  }
  .c-email-capture-shopify__submit {
    font-family: 'Degular', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 10px 20px;
    background: #f1f1f1;
    color: #c03800;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  .g-footer__social { display: flex; gap: 12px; list-style: none; padding: 0; margin: 0; }
  .g-footer__social li { list-style: none; }
  .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #f1f1f1;
    border: 1px solid rgba(241,241,241,0.4);
    border-radius: 50%;
    text-decoration: none;
  }
  .btn-icon svg { width: 16px; height: 16px; }
  .btn-icon:hover { background: rgba(241,241,241,0.15); }
  .g-footer__logo { display: flex; justify-content: center; padding-top: 16px; border-top: 1px solid rgba(241,241,241,0.2); }
  .g-footer__logo .svg-logo { height: 28px; color: rgba(241,241,241,0.5); }
  /* Follow us label */
  .g-footer__connect > div > p:first-child {
    font-family: 'Degular', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(241,241,241,0.6);
    margin: 0 0 10px;
  }