/*
Theme Name: Hello Golden Bunny
Description: Golden Bunny.
Author: Yeshwin Anil & Dijo Matthew
Author URI: https://www.mambamarketing.co.uk/
Template: hello-elementor
Version: 1.0.0
*/

/* Contents */
/* 1. Theme Meta
2. CSS Variables (design tokens)
3. Base / Global styles
4. Layout helpers
5. WooCommerce overrides
6. Components
   - Countdown (shared base)
   - Countdown variants (hero / product / section)
   - Cards
   - Tabs
   - Pagination
   - Filters
7. Animations
8. Responsive overrides (grouped) */

/* =========================
   Design Tokens
========================= */
:root {
  --gold: #ffd51e;
  --gold-dark: #885f20;
  --dark-900: #141416;
  --dark-800: #1f1f22;
  --dark-700: #2f2f32;
  --dark-600: #3c3c3f;

  --tile-radius-lg: 18px;
  --tile-radius-sm: 10px;

  --tile-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -10px 18px rgba(0, 0, 0, 0.35), 0 10px 22px rgba(0, 0, 0, 0.35);
}

/* =========================
   Base / Global
========================= */
html,
body {
  overflow-x: clip;
}

.woocommerce-email .content-cell {
  font-family: "Fredoka", sans-serif;
}

/* =========================
   Layout Helpers
========================= */
.bounding-box {
  width: 85% !important;
}

@media (max-width: 1024px) {
  .bounding-box {
    width: 95% !important;
  }
}

/* =========================
   Countdown – Base Tile
========================= */
.countdown-tile {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;

  aspect-ratio: 1 / 1;
  border-radius: var(--tile-radius-lg);
  padding: 10px 8px;

  background: linear-gradient(
    to bottom,
    var(--dark-600) 0%,
    var(--dark-700) 48%,
    var(--dark-800) 52%,
    var(--dark-900) 100%
  );

  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--tile-shadow);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.countdown-tile::after {
  content: "";
  position: absolute;
  top: 55%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-0.5px);
}

/* =========================
   Countdown – Product Section
========================= */
.prod-sec-ctdn .elementor-countdown-wrapper {
  display: flex !important;
  gap: 12px !important;
}

.prod-sec-ctdn .elementor-countdown-item {
  width: 76px !important;
}

.prod-sec-ctdn .elementor-countdown-item {
  composes: countdown-tile;
}

/* =========================
   Countdown – Product Card
========================= */
.product-ctdn .elementor-countdown-item {
  border-radius: 20px !important;
}

/* =========================
   Countdown – Hero
========================= */
.hero-sec-ctdn .elementor-countdown-item {
  height: 75px;
}

/* Countdown Typography */
.elementor-countdown-digits,
.elementor-countdown-label {
  line-height: 1;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.elementor-countdown-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =========================
   Product Cards
========================= */
.prod-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.prod-card-inner {
  --grad-angle: 120deg;
  background: linear-gradient(var(--grad-angle), #000, #272727);
}

.prod-card-inner:hover {
  --grad-angle: 220deg;
}

/* =========================
   WooCommerce
========================= */
.single_add_to_cart_button {
  width: 100%;
  height: 50px;
  box-sizing: border-box;
}

input[type="number"] {
  width: 100px;
  text-align: center;
  border-radius: 10px;
}

/* =========================
   Pagination
========================= */
.page-numbers {
  border-radius: 10px;
  background: #272727;
  padding: 15px 30px;
  font-weight: 700;
  color: #fff !important;
}

.elementor-pagination {
  padding-top: 60px !important;
  padding-bottom: 30px;
}

.page-numbers:hover {
  color: #ffffff !important;
  background: linear-gradient(120deg, #ffd51e 0%, #885f20 100%) !important;
}

.page-numbers.current {
  color: #ffffff !important;
  background: linear-gradient(135deg, #ffd51e 0%, #885f20 100%) !important;
}
@media only screen and (max-width: 480px) {
  .elementor-pagination {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .page-numbers {
    font-size: 12px;
    padding: 12px 15px;
  }
}

/* =========================
   Animations
========================= */
@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.draw-today,
.draw-tomorrow {
  /* font-weight: 700; */
  color: gold;
  animation: blinker 1.5s linear infinite;
  font-size: 1em !important;
}
