/* ============================================================
   Aura Global Furniture — Shared Stylesheet
   Version: 1.0 | Reternetics
   ============================================================ */

/* RESET & ROOT */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ivory:     #F7F3EE;
  --ivory2:    #EDE7DE;
  --charcoal:  #1C1C1C;
  --charcoal2: #2E2C2A;
  --gold:      #E06C00;
  --gold-lt:   #F08020;
  --gold-dk:   #B85500;
  --text:      #3A3530;
  --muted:     #7A726A;
  --nav-h:     68px;
  --tr:        0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--ivory); color: var(--text); overflow-x: hidden; }

/* HEADER */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 9999; height: var(--nav-h); background: rgba(20,20,20,0.98); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(224,108,0,0.3); transition: box-shadow var(--tr), background var(--tr); }
header.scrolled { box-shadow: 0 2px 32px rgba(0,0,0,0.5); }
.nav-inner { max-width: 1320px; margin: 0 auto; padding: 0 28px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { width: 200px; height: auto; display: block; }

/* DESKTOP NAV */
.desk-nav { display: flex; align-items: center; gap: 2px; }
.desk-nav a { display: block; padding: 10px 11px; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.82); text-decoration: none; border-radius: 4px; white-space: nowrap; transition: color var(--tr), background var(--tr); }
.desk-nav a:hover, .desk-nav a.active { color: var(--gold-lt); background: rgba(224,108,0,0.1); }
.has-drop { position: relative; }
.has-drop .sub { display: none; position: absolute; top: calc(100% + 4px); left: 0; min-width: 210px; background: #1e1e1e; border-top: 2px solid var(--gold); border: 1px solid #333; border-top: 2px solid var(--gold); box-shadow: 0 16px 48px rgba(0,0,0,0.5); border-radius: 0 0 6px 6px; padding: 8px 0; z-index: 1000; }
.has-drop .sub a { display: block; padding: 9px 20px; font-size: 0.77rem; color: rgba(255,255,255,0.65); text-transform: none; border-radius: 0; transition: color var(--tr), padding-left var(--tr); }
.has-drop .sub a:hover { color: var(--gold-lt); padding-left: 26px; background: none; }
.has-drop .sub a.active-sub { color: var(--gold-lt); border-left: 2px solid var(--gold); padding-left: 18px; }
@media (hover: hover) and (pointer: fine) { .has-drop:hover .sub { display: block; } }
.cta-btn { background: var(--gold) !important; color: #fff !important; border-radius: 4px !important; margin-left: 6px !important; }
.cta-btn:hover { background: var(--gold-lt) !important; }

/* HAMBURGER */
.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 10px; -webkit-tap-highlight-color: transparent; }
.ham span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: var(--tr); }
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV */
#mob-nav { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: #1a1a1a; overflow-y: auto; z-index: 9998; flex-direction: column; }
#mob-nav.open { display: flex; }
.mob-item { border-bottom: 1px solid #2a2a2a; }
.mob-item > a { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.88rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; -webkit-tap-highlight-color: transparent; }
.mob-item > a .arr { transition: transform 0.3s; font-size: 0.75rem; }
.mob-item.open > a .arr { transform: rotate(180deg); }
.mob-sub { display: none; background: #222; border-left: 3px solid var(--gold); margin-left: 20px; }
.mob-item.open .mob-sub { display: block; }
.mob-sub a { display: block; padding: 13px 20px; color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.84rem; border-bottom: 1px solid #2a2a2a; -webkit-tap-highlight-color: transparent; }
.mob-cta { padding: 20px 24px; }
.mob-cta a { display: block; text-align: center; padding: 14px; background: var(--gold); color: #fff; text-decoration: none; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 4px; }

/* PAGE HERO */
.page-hero { position: relative; height: 380px; padding-top: var(--nav-h); overflow: hidden; display: flex; align-items: center; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.4) 100%); }
.page-hero-text { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; padding: 0 72px; width: 100%; }
.breadcrumb { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.breadcrumb a { color: var(--gold-lt); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.35); }
.page-hero-text h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 300; color: #fff; line-height: 1.05; margin-bottom: 12px; }
.page-hero-text h1 em { font-style: italic; color: var(--gold-lt); }
.page-hero-text p { font-size: 0.9rem; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.7; }
.page-hero-divider { width: 50px; height: 2px; background: var(--gold); margin: 18px 0 0; }

/* FILTER BAR */
.filter-bar { background: var(--charcoal); padding: 0; }
.filter-inner { max-width: 1320px; margin: 0 auto; padding: 0 56px; display: flex; align-items: center; overflow-x: auto; scrollbar-width: none; }
.filter-inner::-webkit-scrollbar { display: none; }
.filter-btn { flex-shrink: 0; padding: 16px 20px; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); background: none; border: none; border-bottom: 2px solid transparent; cursor: pointer; transition: color var(--tr), border-color var(--tr); white-space: nowrap; }
.filter-btn:hover { color: rgba(255,255,255,0.85); }
.filter-btn.active { color: var(--gold-lt); border-bottom-color: var(--gold); }

/* PRODUCT GRID */
.products-section { padding: 72px 0; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 56px; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.section-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 300; color: var(--charcoal); }
.section-header h2 em { font-style: italic; }
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* PRODUCT CARD */
.prod-card { background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.06); transition: box-shadow 0.4s ease, transform 0.4s ease; opacity: 1; transform: none; }
.prod-card.visible { opacity: 1; transform: none; }
.prod-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); transform: translateY(-4px); }
.prod-img { position: relative; overflow: hidden; aspect-ratio: 16/10; background: var(--ivory2); cursor: zoom-in; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.prod-card:hover .prod-img img { transform: scale(1.06); }
.prod-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(224,108,0,0.08), transparent 60%); opacity: 0; transition: opacity var(--tr); pointer-events: none; }
.prod-card:hover .prod-img::after { opacity: 1; }
.prod-zoom-icon { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; background: rgba(0,0,0,0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--tr); pointer-events: none; }
.prod-zoom-icon svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }
.prod-card:hover .prod-zoom-icon { opacity: 1; }
.prod-code { position: absolute; top: 12px; left: 12px; background: rgba(0,0,0,0.55); color: rgba(255,255,255,0.7); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.08em; padding: 3px 8px; border-radius: 2px; text-transform: uppercase; }
.prod-info { padding: 18px 20px 20px; }
.prod-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--charcoal); margin-bottom: 6px; line-height: 1.3; }
.prod-desc { font-size: 0.8rem; line-height: 1.6; color: var(--muted); margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.prod-actions { display: flex; gap: 8px; }
.btn-enquire { flex: 1; padding: 10px 12px; background: var(--gold); color: #fff; border: none; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; border-radius: 3px; transition: background var(--tr); text-align: center; }
.btn-enquire:hover { background: var(--gold-dk); }
.btn-wa { display: flex; align-items: center; justify-content: center; padding: 10px 14px; background: var(--charcoal); color: #fff; text-decoration: none; font-size: 0.75rem; font-weight: 600; border-radius: 3px; transition: background var(--tr); white-space: nowrap; }
.btn-wa:hover { background: #25D366; }

/* ENQUIRY MODAL */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 99999; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: #fff; border-radius: 8px; padding: 40px; max-width: 520px; width: 100%; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--muted); }
.modal-close:hover { color: var(--charcoal); }
.modal h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: var(--charcoal); margin-bottom: 4px; }
.modal-product { font-size: 0.88rem; color: var(--gold); font-weight: 600; margin-bottom: 2px; }
.modal-product-code { font-size: 0.72rem; color: var(--muted); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; }
.modal-product-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 13px; border: 1.5px solid var(--ivory2); border-radius: 3px; font-size: 0.88rem; font-family: 'Jost', sans-serif; color: var(--text); background: var(--ivory); transition: border-color var(--tr); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit { width: 100%; padding: 14px; background: var(--gold); color: #fff; border: none; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; border-radius: 3px; transition: background var(--tr); margin-top: 4px; }
.btn-submit:hover { background: var(--gold-dk); }
.modal-or { text-align: center; font-size: 0.78rem; color: var(--muted); margin: 14px 0; }
.btn-wa-modal { display: block; width: 100%; padding: 13px; background: #25D366; color: #fff; text-decoration: none; text-align: center; border-radius: 3px; font-size: 0.82rem; font-weight: 600; transition: background var(--tr); }
.btn-wa-modal:hover { background: #1fb358; }
.g-recaptcha { margin-bottom: 6px; }
@media (max-width: 400px) { .g-recaptcha { transform: scale(0.82); transform-origin: left top; } }
.form-success { display: none; text-align: center; padding: 24px; }
.form-success .success-icon { font-size: 2.5rem; margin-bottom: 12px; }
.form-success h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--charcoal); margin-bottom: 8px; }
.form-success p { font-size: 0.88rem; color: var(--muted); }
.form-error { background: #fff0f0; border: 1px solid #ffcccc; border-radius: 3px; padding: 10px 14px; font-size: 0.84rem; color: #c0392b; margin-bottom: 12px; display: none; }

/* LIGHTBOX */
#lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 99999; align-items: center; justify-content: center; padding: 20px; cursor: zoom-out; }
#lightbox.open { display: flex; }
.lb-inner { position: relative; max-width: 90vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
.lb-inner img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 3px; box-shadow: 0 32px 80px rgba(0,0,0,0.7); animation: lbZoomIn 0.3s cubic-bezier(0.22,1,0.36,1); }
@keyframes lbZoomIn { from { opacity: 0; transform: scale(0.88); } to { opacity: 1; transform: scale(1); } }
.lb-close { position: fixed; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; opacity: 0.7; }
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.2); color: #fff; font-size: 1.4rem; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lb-prev { left: 20px; } .lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: rgba(224,108,0,0.6); border-color: var(--gold); }
.lb-caption { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,0.6); color: #fff; padding: 8px 20px; border-radius: 20px; font-size: 0.82rem; white-space: nowrap; backdrop-filter: blur(8px); }
.lb-counter { position: fixed; top: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.12em; }

/* FEATURES STRIP */
.features-strip { background: var(--charcoal2); padding: 48px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.06); }
.feature-item { padding: 32px 28px; background: var(--charcoal2); text-align: center; }
.feature-icon-svg { width: 48px; height: 48px; margin: 0 auto 16px; background: rgba(224,108,0,0.12); border: 1.5px solid rgba(224,108,0,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-lt); }
.feature-icon-svg svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.feature-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 400; color: #fff; margin-bottom: 6px; }
.feature-item p { font-size: 0.78rem; color: rgba(255,255,255,0.42); line-height: 1.6; }

/* CTA STRIP */
.cta-strip { background: var(--gold); padding: 56px 0; }
.cta-inner { max-width: 1320px; margin: 0 auto; padding: 0 56px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.cta-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 2.4vw, 2.2rem); font-weight: 300; color: #fff; line-height: 1.2; }
.cta-inner h2 em { font-style: italic; }
.btn-white { display: inline-block; padding: 13px 28px; background: #fff; color: var(--gold); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; border-radius: 3px; transition: transform var(--tr), box-shadow var(--tr); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-ghost-w { display: inline-block; padding: 12px 28px; border: 1.5px solid rgba(255,255,255,0.8); color: #fff; font-size: 0.76rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; border-radius: 3px; transition: border-color var(--tr), transform var(--tr); }
.btn-ghost-w:hover { border-color: #fff; transform: translateY(-2px); }

/* SECTION COMMONS */
section { padding: 88px 0; }
.section-tag { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.section-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 300; line-height: 1.15; color: var(--charcoal); }
.section-heading em { font-style: italic; }
.section-divider { width: 44px; height: 2px; background: var(--gold); margin: 20px 0 36px; }

/* FOOTER */
footer { background: #111; color: rgba(255,255,255,0.6); padding: 72px 0 0; position: relative; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, transparent, var(--gold), var(--gold-lt), var(--gold), transparent); background-size: 200% 100%; animation: footerWave 3s linear infinite; }
@keyframes footerWave { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.footer-grid { max-width: 1320px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 48px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 56px; width: auto; display: block; }
.footer-brand p { font-size: 0.84rem; line-height: 1.85; color: rgba(255,255,255,0.38); max-width: 270px; }
.social-icons { display: flex; gap: 12px; margin-top: 20px; }
.social-icon { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); text-decoration: none; transition: background var(--tr), color var(--tr), border-color var(--tr); }
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-col h4 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.42); font-size: 0.84rem; text-decoration: none; transition: color var(--tr); }
.footer-col ul li a:hover { color: #fff; }
.footer-contact p { font-size: 0.84rem; line-height: 1.95; color: rgba(255,255,255,0.42); }
.footer-contact a { color: rgba(255,255,255,0.42); text-decoration: none; transition: color var(--tr); }
.footer-contact a:hover { color: var(--gold-lt); }
.footer-bottom { max-width: 1320px; margin: 56px auto 0; padding: 20px 40px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.22); }
.footer-bottom a { color: rgba(255,255,255,0.32); text-decoration: none; transition: color var(--tr); }
.footer-bottom a:hover { color: var(--gold-lt); }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: none; }
section, .cta-strip, .features-strip, footer { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.page-hero, .filter-bar { opacity: 1 !important; transform: none !important; }
.sec-visible { opacity: 1 !important; transform: none !important; }

/* WHATSAPP BUTTON */
#wa-btn { position: fixed; right: 20px; bottom: 28px; z-index: 10000; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.45); text-decoration: none; animation: waPulse 2.5s infinite; }
#wa-btn:hover { transform: scale(1.1); animation: none; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .desk-nav { display: none; } .ham { display: flex; }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .page-hero { height: 280px; } .page-hero-text { padding: 0 20px; }
  .filter-inner { padding: 0 16px; }
  .products-section { padding: 48px 0; }
  .container { padding: 0 18px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; align-items: flex-start; padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 0 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 20px; }
  .form-row { grid-template-columns: 1fr; }
  #wa-btn { right: 14px; bottom: 20px; width: 52px; height: 52px; }
}
@media (max-width: 480px) {
  .prod-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}

/* NAV LOGO (shared) */
.nav-logo { text-decoration: none; }

/* FOOTER EXTRAS (shared) */
.footer-brand { }
.footer-col { }
.footer-contact { }

/* ANIMATION DELAYS (shared) */
.d1 { transition-delay: 0.1s !important; }
.d2 { transition-delay: 0.2s !important; }
.d3 { transition-delay: 0.3s !important; }
