
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(145deg, #fff0f5 0%, #ffd9e8 100%);
      background-attachment: fixed;
      color: #1e1e2a;
      overflow-x: hidden;
    }
    h1, h2, h3, h4, .logo-text { font-family: 'Playfair Display', serif; }

    /* Navbar */
    .navbar-glass {
      background: rgba(255, 240, 245, 0.92);
      backdrop-filter: blur(14px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.06);
      transition: all 0.3s;
    }
    .navbar-brand img {
      width: 45px;
      height: 45px;
      object-fit: cover;
      border: 2px solid #ff6a9e;
      border-radius: 50%;
      transition: transform 0.4s;
    }
    .navbar-brand:hover img { transform: scale(1.05); }
    .logo-text {
      font-weight: 700;
      font-size: 1.5rem;
      background: linear-gradient(135deg, #b63b6b, #f15f8e);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .nav-link, .dropdown-item {
      font-weight: 500;
      transition: all 0.3s ease;
    }
    .nav-link:hover, .dropdown-item:hover {
      color: #e6397c !important;
      transform: translateY(-2px);
    }
    .icon-btn {
      background: transparent;
      border: none;
      font-size: 1.3rem;
      position: relative;
      transition: 0.3s;
      color: #4a2e38;
    }
    .icon-btn:hover { color: #d43f81; transform: scale(1.1); }
    .cart-badge {
      position: absolute;
      top: -8px;
      right: -12px;
      background: #e6397c;
      color: white;
      font-size: 0.7rem;
      border-radius: 50%;
      padding: 2px 6px;
      font-weight: bold;
    }

    /* Loader */
    .loader-wrapper {
      position: fixed;
      inset: 0;
      background: #ffc0db;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.5s;
    }
    .loader {
      width: 50px;
      height: 50px;
      border: 5px solid white;
      border-top: 5px solid #e6397c;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    #backToTop {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: #e6397c;
      border-radius: 50%;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      cursor: pointer;
      opacity: 0;
      transition: 0.4s;
      z-index: 99;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    /* ============================================ */
    /* CONTACT HERO */
    /* ============================================ */
    .contact-hero {
      background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3)),
                  url('https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1600&h=500&fit=crop');
      background-size: cover;
      background-position: center;
      border-radius: 2rem;
      padding: 5rem 3rem;
      text-align: center;
      color: white;
      margin-bottom: 3rem;
      position: relative;
      overflow: hidden;
    }
    .contact-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(230,57,124,0.3), rgba(251,191,36,0.1));
      border-radius: 2rem;
    }
    .contact-hero h1 {
      font-size: 3.5rem;
      font-weight: 700;
      position: relative;
      z-index: 1;
      text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }
    .contact-hero .gold-line {
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, #e6397c, #fbbf24);
      margin: 1.5rem auto;
      border-radius: 2px;
      position: relative;
      z-index: 1;
    }
    .contact-hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
      opacity: 0.9;
      position: relative;
      z-index: 1;
    }

    /* ============================================ */
    /* CONTACT CARDS */
    /* ============================================ */
    .contact-card {
      background: white;
      border-radius: 1.5rem;
      padding: 2rem;
      box-shadow: 0 8px 30px rgba(0,0,0,0.06);
      transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      height: 100%;
      text-align: center;
      border: 1px solid rgba(255,255,255,0.3);
    }
    .contact-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    }
    .contact-card .contact-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: white;
      background: linear-gradient(135deg, #e6397c, #fbbf24);
      margin: 0 auto 1rem;
      transition: transform 0.5s;
    }
    .contact-card:hover .contact-icon {
      transform: rotate(10deg) scale(1.05);
    }
    .contact-card .contact-label {
      font-size: 0.8rem;
      color: #6c757d;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
    }
    .contact-card .contact-value {
      font-weight: 600;
      font-size: 1.05rem;
      margin-top: 0.25rem;
      color: #1e1e2a;
    }
    .contact-card .contact-value a {
      color: #1e1e2a;
      text-decoration: none;
      transition: 0.3s;
    }
    .contact-card .contact-value a:hover {
      color: #e6397c;
    }

    /* ============================================ */
    /* SECTION TITLE */
    /* ============================================ */
    .section-title {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
      position: relative;
      display: inline-block;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #e6397c, #fbbf24);
      border-radius: 2px;
    }
    .section-title.text-center::after {
      left: 50%;
      transform: translateX(-50%);
    }

    /* ============================================ */
    /* FORM */
    /* ============================================ */
    .form-card {
      background: white;
      border-radius: 1.5rem;
      padding: 2.5rem;
      box-shadow: 0 8px 30px rgba(0,0,0,0.06);
      border: 1px solid rgba(255,255,255,0.3);
    }
    .form-control {
      border-radius: 0.8rem;
      padding: 0.75rem 1rem;
      border: 2px solid #f0d0dd;
      transition: all 0.3s;
      font-size: 0.95rem;
    }
    .form-control:focus {
      border-color: #e6397c;
      box-shadow: 0 0 0 0.2rem rgba(230,57,124,0.15);
    }
    .form-control.is-valid {
      border-color: #10b981;
    }
    .form-control.is-invalid {
      border-color: #ef4444;
    }
    .form-label {
      font-weight: 600;
      color: #4a2e38;
    }
    .btn-send {
      background: linear-gradient(95deg, #e6397c, #fbbf24);
      border: none;
      color: white;
      font-weight: 600;
      padding: 12px 35px;
      border-radius: 50px;
      transition: all 0.4s;
    }
    .btn-send:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 12px 35px rgba(230,57,124,0.3);
      color: white;
    }
    .success-message {
      display: none;
      background: #10b981;
      color: white;
      padding: 1rem 1.5rem;
      border-radius: 1rem;
      text-align: center;
      margin-top: 1.5rem;
    }
    .success-message.show {
      display: block;
      animation: fadeInUp 0.5s ease;
    }

    /* ============================================ */
    /* SUPPORT OPTIONS */
    /* ============================================ */
    .support-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 1.5rem;
      background: white;
      border-radius: 1rem;
      box-shadow: 0 4px 15px rgba(0,0,0,0.04);
      transition: all 0.4s;
      border-left: 3px solid transparent;
    }
    .support-item:hover {
      transform: translateX(8px);
      border-left-color: #e6397c;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }
    .support-item .support-icon {
      font-size: 1.5rem;
      color: #e6397c;
    }
    .support-item .support-text {
      font-weight: 500;
      color: #4a2e38;
    }

    /* ============================================ */
    /* BUSINESS HOURS */
    /* ============================================ */
    .hours-card {
      background: white;
      border-radius: 1.5rem;
      padding: 2rem;
      box-shadow: 0 8px 30px rgba(0,0,0,0.06);
      text-align: center;
      border: 1px solid rgba(255,255,255,0.3);
    }
    .hours-card .hours-day {
      font-weight: 600;
      color: #1e1e2a;
    }
    .hours-card .hours-time {
      color: #6c757d;
    }

    /* ============================================ */
    /* SOCIAL MEDIA */
    /* ============================================ */
    .social-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 25px;
      border-radius: 50px;
      color: white;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.4s;
      border: none;
      font-size: 0.95rem;
    }
    .social-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(0,0,0,0.2);
      color: white;
    }
    .social-btn.facebook { background: #1877f2; }
    .social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
    .social-btn.tiktok { background: #000000; }
    .social-btn.whatsapp { background: #25d366; }
    .social-btn.twitter { background: #000000; }
    .social-btn .fab { font-size: 1.3rem; }
    .btn-whatsapp-chat {
      background: #25d366;
      color: white;
      padding: 14px 35px;
      border-radius: 50px;
      font-weight: 600;
      border: none;
      transition: all 0.4s;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .btn-whatsapp-chat:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(37,211,102,0.3);
      color: white;
    }

    /* ============================================ */
    /* WHY CONTACT */
    /* ============================================ */
    .why-contact-item {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      padding: 0.5rem 0;
    }
    .why-contact-item .check-icon {
      color: #10b981;
      font-size: 1.2rem;
    }
    .why-contact-item .why-text {
      color: #4a2e38;
      font-weight: 500;
    }

    /* Animations */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .animate-on-scroll {
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
    }
    .animate-on-scroll:nth-child(1) { animation-delay: 0.1s; }
    .animate-on-scroll:nth-child(2) { animation-delay: 0.2s; }
    .animate-on-scroll:nth-child(3) { animation-delay: 0.3s; }
    .animate-on-scroll:nth-child(4) { animation-delay: 0.4s; }
    .animate-on-scroll:nth-child(5) { animation-delay: 0.5s; }
    .animate-on-scroll:nth-child(6) { animation-delay: 0.6s; }

    footer a {
      text-decoration: none;
      transition: 0.2s;
    }
    footer a:hover { color: #ff80a6 !important; }
    .social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      margin: 0 6px;
      color: white;
      font-size: 1.2rem;
      transition: none;
    }
    .social-icon:hover {
      background: #e6397c;
      color: white;
      transform: none;
      box-shadow: none;
    }

    /* Map */
    .map-placeholder {
      background: linear-gradient(135deg, #f0d0dd, #ffd9e8);
      border-radius: 1.5rem;
      padding: 3rem 2rem;
      text-align: center;
      min-height: 250px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border: 2px dashed #e6397c;
    }
    .map-placeholder .map-icon {
      font-size: 3rem;
      color: #e6397c;
      margin-bottom: 1rem;
    }
    .map-placeholder .map-text {
      font-weight: 600;
      color: #4a2e38;
    }

    @media (max-width: 768px) {
      .contact-hero { padding: 3rem 1.5rem; }
      .contact-hero h1 { font-size: 2.5rem; }
      .contact-hero p { font-size: 1rem; }
      .section-title { font-size: 2rem; }
      .form-card { padding: 1.5rem; }
      .contact-card { padding: 1.5rem; }
    }
    @media (max-width: 576px) {
      .social-btn { font-size: 0.85rem; padding: 10px 18px; }
      .support-item { padding: 0.8rem 1rem; }
    }

