/*
Theme Name: Cigar
Theme URI: https://cigarking.com
Author: Cigar King
Description: A minimal Gutenberg-ready theme for Cigar King
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cigar
*/

/* Theme variables */

/* Theme variables adapted from React project */
:root {
  --background: #0a0a0a;
  --foreground: #f5f5f5;
  --card: #1a1a1a;
  --card-foreground: #f5f5f5;
  --primary: #d4a574;
  --primary-foreground: #0a0a0a;
  --secondary: #2d2520;
  --secondary-foreground: #f5f5f5;
  --muted: #2d2520;
  --muted-foreground: #a18a76;
  --border: rgba(212, 165, 116, 0.15);
}

/* Base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--background);
  color: var(--foreground);
  /*font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,*/
  /*  Ubuntu, Cantarell, sans-serif;*/
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Token utility classes used in JSX */
.bg-background {
  background-color: var(--background);
}

.text-foreground {
  color: var(--foreground);
}

.bg-card {
  background-color: var(--card);
}

.text-card-foreground {
  color: var(--card-foreground);
}

.bg-secondary {
  background-color: var(--secondary);
}

.text-secondary-foreground {
  color: var(--secondary-foreground);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.bg-primary {
  background-color: var(--primary);
}

.text-primary {
  color: var(--primary);
}

.text-primary-foreground {
  color: var(--primary-foreground);
}

.border-border {
  border-color: var(--border);
}

/* Approximate translucent variants */
.bg-primary\/10 {
  background-color: rgba(212, 165, 116, 0.1);
}

.bg-primary\/20 {
  background-color: rgba(212, 165, 116, 0.2);
}

.bg-primary\/30 {
  background-color: rgba(212, 165, 116, 0.3);
}

.bg-primary\/90 {
  background-color: rgba(212, 165, 116, 0.9);
}

.bg-secondary\/10 {
  background-color: rgba(45, 37, 32, 0.1);
}

.bg-secondary\/20 {
  background-color: rgba(45, 37, 32, 0.2);
}

.bg-black\/40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-black\/60 {
  background-color: rgba(0, 0, 0, 0.6);
}

.bg-black\/70 {
  background-color: rgba(0, 0, 0, 0.7);
}

.bg-black\/80 {
  background-color: rgba(0, 0, 0, 0.8);
}

.bg-black\/90 {
  background-color: rgba(0, 0, 0, 0.9);
}

.text-primary\/90 {
  color: rgba(212, 165, 116, 0.9);
}

.shadow-primary\/10 {
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.1);
}

.shadow-primary\/20 {
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}
.border-primary {
    border-color: #D4A574 !important;
}

.border-primary\/20 {
  border-color: #d4a57426;
}

.border-primary\/30 {
  border-color: rgba(212, 165, 116, 0.3);
}

.border-primary\/50 {
  border-color: rgba(212, 165, 116, 0.5);
}

.backdrop-blur-sm {
  backdrop-filter: blur(8px);
}

.backdrop-blur-md {
  backdrop-filter: blur(16px);
}



.table {
  display: table
}
.hidden {
  display: none
}
.container {
  width: 100%
}





.row-start-1 {
  grid-row-start: 1
}
.-mx-1 {
  margin-left: -0.25rem;
  margin-right: -0.25rem
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem
}
.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem
}
.mx-auto {
  margin-left: auto;
  margin-right: auto
}
.my-0 {
  margin-top: 0px;
  margin-bottom: 0px
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem
}
.-ml-4 {
  margin-left: -1rem
}
.-mt-4 {
  margin-top: -1rem
}
.mb-1 {
  margin-bottom: 0.25rem
}
.mb-12 {
  margin-bottom: 3rem
}
.mb-16 {
  margin-bottom: 4rem
}
.mb-2 {
  margin-bottom: 0.5rem
}
.mb-20 {
  margin-bottom: 5rem
}
.mb-3 {
  margin-bottom: 0.75rem
}
.mb-4 {
  margin-bottom: 1rem
}
.mb-6 {
  margin-bottom: 1.5rem
}
.mb-8 {
  margin-bottom: 2rem
}
.ml-1 {
  margin-left: 0.25rem
}
.ml-2 {
  margin-left: 0.5rem
}
.ml-auto {
  margin-left: auto
}
.mt-1 {
  margin-top: 0.25rem
}
.mt-10 {
  margin-top: 2.5rem
}
.mt-16 {
  margin-top: 4rem
}
.mt-2 {
  margin-top: 0.5rem
}
.mt-4 {
  margin-top: 1rem
}
.mt-8 {
  margin-top: 2rem
}
.mt-auto {
  margin-top: auto
}
.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1
}
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2
}
.block {
  display: block
}
.inline-block {
  display: inline-block
}
.flex {
  display: flex
}
.inline-flex {
  display: inline-flex
}
.table {
  display: table
}
.table-caption {
  display: table-caption
}
.table-cell {
  display: table-cell
}
.table-row {
  display: table-row
}
.grid {
  display: grid
}
.hidden {
  display: none
}
.aspect-square {
  aspect-ratio: 1 / 1
}
.aspect-video {
  aspect-ratio: 16 / 9
}
.h-1 {
  height: 0.25rem
}
.h-10 {
  height: 2.5rem
}
.h-12 {
  height: 3rem
}
.h-14 {
  height: 3.5rem
}
.h-16 {
  height: 4rem
}
.h-2 {
  height: 0.5rem
}
.h-20 {
  height: 5rem
}
.h-32 {
  height: 8rem
}
.h-4 {
  height: 1rem
}
.h-5 {
  height: 1.25rem
}
.h-64 {
  height: 16rem
}
.h-7 {
  height: 1.75rem
}
.h-8 {
  height: 2rem
}
.h-9 {
  height: 2.25rem
}
.h-96 {
  height: 24rem
}
.h-auto {
  height: auto
}
.h-full {
  height: 100%
}
.h-px {
  height: 1px
}
.h-screen {
  height: 100vh
}
.min-h-0 {
  min-height: 0px
}
.min-h-screen {
  min-height: 100vh
}
.w-0 {
  width: 0px
}
.w-1 {
  width: 0.25rem
}
.w-10 {
  width: 2.5rem
}
.w-12 {
  width: 3rem
}
.w-14 {
  width: 3.5rem
}
.w-16 {
  width: 4rem
}
.w-2 {
  width: 0.5rem
}
.w-20 {
  width: 5rem
}
.w-3 {
  width: 0.75rem
}
.w-32 {
  width: 8rem
}
.w-4 {
  width: 1rem
}
.w-5 {
  width: 1.25rem
}
.w-6 {
  width: 1.5rem
}
.w-64 {
  width: 16rem
}
.w-72 {
  width: 18rem
}
.w-8 {
  width: 2rem
}
.w-9 {
  width: 2.25rem
}
.w-96 {
  width: 24rem
}
.w-auto {
  width: auto
}
.w-fit {
  width: fit-content
}
.w-full {
  width: 100%
}
.w-max {
  width: max-content
}
.w-px {
  width: 1px
}
.max-w-2xl {
  max-width: 42rem
}
.max-w-3xl {
  max-width: 48rem
}
.max-w-4xl {
  max-width: 56rem
}
.max-w-5xl {
  max-width: 64rem
}
.max-w-7xl {
  max-width: 80rem
}
.min-w-0 {
  min-width: 0px
}
.max-w-max {
  max-width: max-content
}
.flex-1 {
  flex: 1 1 0%
}
.shrink-0 {
  flex-shrink: 0
}
.grow {
  flex-grow: 1
}
.grow-0 {
  flex-grow: 0
}
.basis-full {
  flex-basis: 100%
}
.caption-bottom {
  caption-side: bottom
}
.border-collapse {
  border-collapse: collapse
}
.-translate-x-px {
  transform: translate(-1px, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1)
}
.translate-x-px {
  transform: translate(1px, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1)
}
.rotate-45 {
  transform: translate(0, 0) rotate(45deg) skewX(0) skewY(0) scaleX(1) scaleY(1)
}
.rotate-90 {
  transform: translate(0, 0) rotate(90deg) skewX(0) skewY(0) scaleX(1) scaleY(1)
}
.transform {
  transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1)
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1)
}
@keyframes pulse {
  50% {
      opacity: .5
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite
}
.cursor-default {
  cursor: default
}
.cursor-pointer {
  cursor: pointer
}
.touch-none {
  touch-action: none
}
.resize-none {
  resize: none
}
.scroll-my-1 {
  scroll-margin-top: 0.25rem;
  scroll-margin-bottom: 0.25rem
}
.scroll-py-1 {
  scroll-padding-top: 0.25rem;
  scroll-padding-bottom: 0.25rem
}
.list-none {
  list-style-type: none
}
.auto-rows-min {
  grid-auto-rows: min-content
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr))
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}
.flex-row {
  flex-direction: row
}
.flex-col {
  flex-direction: column
}
.flex-col-reverse {
  flex-direction: column-reverse
}
.flex-wrap {
  flex-wrap: wrap
}
.items-start {
  align-items: flex-start
}
.items-end {
  align-items: flex-end
}
.items-center {
  align-items: center
}
.items-stretch {
  align-items: stretch
}
.justify-center {
  justify-content: center
}
.justify-between {
  justify-content: space-between
}
.justify-items-start {
  justify-items: start
}
.gap-1 {
  gap: 0.25rem
}
.gap-10 {
  gap: 2.5rem
}
.gap-12 {
  gap: 3rem
}
.gap-2 {
  gap: 0.5rem
}
.gap-3 {
  gap: 0.75rem
}
.gap-4 {
  gap: 1rem
}
.gap-6 {
  gap: 1.5rem
}
.gap-8 {
  gap: 2rem
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  margin-top: calc(0.25rem * calc(1 - 0));
  margin-bottom: calc(0.25rem * 0)
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  margin-top: calc(0.5rem * calc(1 - 0));
  margin-bottom: calc(0.5rem * 0)
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  margin-top: calc(0.75rem * calc(1 - 0));
  margin-bottom: calc(0.75rem * 0)
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  margin-top: calc(1rem * calc(1 - 0));
  margin-bottom: calc(1rem * 0)
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  margin-top: calc(1.5rem * calc(1 - 0));
  margin-bottom: calc(1.5rem * 0)
}
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  margin-top: calc(2rem * calc(1 - 0));
  margin-bottom: calc(2rem * 0)
}
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  margin-right: calc(0.25rem * 0);
  margin-left: calc(0.25rem * calc(1 - 0))
}
.self-start {
  align-self: flex-start
}
.justify-self-end {
  justify-self: end
}
.overflow-auto {
  overflow: auto
}
.overflow-hidden {
  overflow: hidden
}
.overflow-x-auto {
  overflow-x: auto
}
.overflow-y-auto {
  overflow-y: auto
}
.overflow-x-hidden {
  overflow-x: hidden
}
.rounded-full {
  border-radius: 9999px
}
.rounded-lg {
  border-radius: 0.5rem
}
.rounded-md {
  border-radius: 0.375rem
}
.rounded-none {
  border-radius: 0px
}
.rounded-sm {
  border-radius: 0.125rem
}
.rounded-xl {
  border-radius: 0.75rem
}
.rounded-tl-sm {
  border-top-left-radius: 0.125rem
}
.border {
  border-width: 1px
}
.border-2 {
  border-width: 2px
}
.border-x {
  border-left-width: 1px;
  border-right-width: 1px
}
.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px
}
.border-b {
  border-bottom-width: 1px
}
.border-l {
  border-left-width: 1px
}
.border-r {
  border-right-width: 1px
}
.border-t {
  border-top-width: 1px
}
.border-dashed {
  border-style: dashed
}
.border-green-500 {
  border-color: rgb(34,197,94)
}
.border-green-500 {
  border-color: rgb(34,197,94)
}
.border-transparent {
  border-color: transparent
}
.border-l-transparent {
  border-left-color: transparent
}
.border-t-transparent {
  border-top-color: transparent
}
.bg-black {
  background-color: rgb(0,0,0)
}
.bg-black {
  background-color: rgb(0,0,0)
}
.bg-black {
  background-color: rgb(0,0,0)
}
.bg-black {
  background-color: rgb(0,0,0)
}
.bg-black {
  background-color: rgb(0,0,0)
}
.bg-black {
  background-color: rgb(0,0,0)
}
.bg-black {
  background-color: rgb(0,0,0)
}
.bg-gray-100 {
  background-color: rgb(243,244,246)
}
.bg-green-500 {
  background-color: rgb(34,197,94)
}
.bg-transparent {
  background-color: transparent
}
.bg-gradient-to-b {
  --tw-gradient-position: to bottom in oklab;
  background-image: linear-gradient(var(--tw-gradient-position), var(--tw-gradient-stops));
}
.bg-gradient-to-r {
  --tw-gradient-position: to right in oklab;
  background-image: linear-gradient(var(--tw-gradient-position), var(--tw-gradient-stops));
}
.bg-gradient-to-t {
  --tw-gradient-position: to top in oklab;
  background-image: linear-gradient(var(--tw-gradient-position), var(--tw-gradient-stops));
}
.from-secondary {
  --tw-gradient-from: var(--secondary);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}
.to-secondary\/50 {
  --tw-gradient-to: color-mix(in oklab, var(--secondary) 50%, transparent);
}
@supports not (color: color-mix(in lab, red, red)) {
  .to-secondary\/50 {
    --tw-gradient-to: rgba(45, 37, 32, 0.5);
  }
}
.from-black {
  --tw-gradient-from: #000000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}
.to-secondary\/20 {
  --tw-gradient-to: color-mix(in oklab, var(--secondary) 20%, transparent);
}
@supports not (color: color-mix(in lab, red, red)) {
  .to-secondary\/20 {
    --tw-gradient-to: rgba(45, 37, 32, 0.2);
  }
}
.whitespace-nowrap {
  white-space: nowrap
}
.break-words {
  overflow-wrap: break-word
}
.fill-current {
  fill: currentColor
}
.object-cover {
  object-fit: cover
}
.p-0 {
  padding: 0px
}
.p-1 {
  padding: 0.25rem
}
.p-12 {
  padding: 3rem
}
.p-2 {
  padding: 0.5rem
}
.p-3 {
  padding: 0.75rem
}
.p-4 {
  padding: 1rem
}
.p-6 {
  padding: 1.5rem
}
.p-8 {
  padding: 2rem
}
.p-px {
  padding: 1px
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem
}
.py-0 {
  padding-top: 0px;
  padding-bottom: 0px
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem
}
.pb-12 {
  padding-bottom: 3rem
}
.pb-16 {
  padding-bottom: 4rem
}
.pb-2 {
  padding-bottom: 0.5rem
}
.pb-3 {
  padding-bottom: 0.75rem
}
.pb-4 {
  padding-bottom: 1rem
}
.pb-6 {
  padding-bottom: 1.5rem
}
.pl-2 {
  padding-left: 0.5rem
}
.pl-4 {
  padding-left: 1rem
}
.pl-8 {
  padding-left: 2rem
}
.pr-2 {
  padding-right: 0.5rem
}
.pr-8 {
  padding-right: 2rem
}
.pt-0 {
  padding-top: 0px
}
.pt-1 {
  padding-top: 0.25rem
}
.pt-2 {
  padding-top: 0.5rem
}
.pt-24 {
  padding-top: 6rem
}
.pt-3 {
  padding-top: 0.75rem
}
.pt-4 {
  padding-top: 1rem
}
.pt-6 {
  padding-top: 1.5rem
}
.text-left {
  text-align: left
}
.text-center {
  text-align: center
}
.align-middle {
  vertical-align: middle
}
.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem
}
.text-5xl {
  font-size: 3rem;
  line-height: 1
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem
}
.text-xs {
  font-size: 0.85rem !important;
  line-height: 1rem
}
.font-medium {
  font-weight: 500
}
.font-normal {
  font-weight: 400
}
.font-semibold {
  font-weight: 600
}
.leading-none {
  line-height: 1
}
.leading-relaxed {
  line-height: 1.625
}
.leading-tight {
  line-height: 1.25
}
.tracking-tight {
  letter-spacing: -0.025em
}
.tracking-wider {
  letter-spacing: 0.05em
}
.tracking-widest {
  letter-spacing: 0.1em
}
.text-current {
  color: currentColor
}
.text-green-400 {
  color: rgb(74,222,128)
}
.tabular-nums {
  font-variant-numeric:       tabular-nums  
}
.text-white {
  color: rgb(255,255,255)
}
.underline-offset-4 {
  text-underline-offset: 4px
}
.opacity-0 {
  opacity: 0
}
.opacity-10 {
  opacity: 0.1
}
.opacity-50 {
  opacity: 0.5
}
.opacity-60 {
  opacity: 0.6
}
.opacity-70 {
  opacity: 0.7
}
.shadow {
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0,0,0,0.1), 0 1px 2px -1px rgb(0,0,0,0.1)
}
.shadow-2xl {
  box-shadow: 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgb(0,0,0,0.25)
}
.shadow-lg {
  box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0,0,0,0.1), 0 4px 6px -4px rgb(0,0,0,0.1)
}
.shadow-md {
  box-shadow: 0 0 #0000, 0 0 #0000, 0 4px 6px -1px rgb(0,0,0,0.1), 0 2px 4px -2px rgb(0,0,0,0.1)
}
.shadow-none {
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000
}
.shadow-sm {
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0,0,0,0.05)
}
.shadow-xl {
  box-shadow: 0 0 #0000, 0 0 #0000, 0 20px 25px -5px rgb(0,0,0,0.1), 0 8px 10px -6px rgb(0,0,0,0.1)
}
.ring-0 {
  box-shadow:   0 0 0 0px #fff,   0 0 0 calc(0px + 0px) rgb(59,130,246,0.5), 0 0 #0000
}
.select-none {
  user-select: none
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px
}
.outline {
  outline-style: solid
}
.blur-3xl {
  filter: blur(64px)                
}
/* .filter {
  filter:                  
} */
.backdrop-blur-lg {
  backdrop-filter: blur(16px)                
}
.backdrop-blur-md {
  backdrop-filter: blur(12px)                
}
.backdrop-blur-sm {
  backdrop-filter: blur(4px)                
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}
.transition-none {
  transition-property: none
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}
.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}
.duration-1000 {
  transition-duration: 1000ms
}
.duration-200 {
  transition-duration: 200ms
}
.duration-300 {
  transition-duration: 300ms
}
.duration-500 {
  transition-duration: 500ms
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
}
.ease-linear {
  transition-timing-function: linear
}
.p-0 {
  padding: 0px
}
.p-2 {
  padding: 0.5rem
}
.mt-1 {
  margin-top: 0.25rem
}
.left-1 {
  left: 0.25rem
}
.-translate-x-1 {
  transform: translate(-0.25rem, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1)
}
.h-12 {
  height: 3rem
}
.ring-0 {
  box-shadow:   0 0 0 0px #fff,   0 0 0 calc(0px + 0px) rgb(59,130,246,0.5), 0 0 #0000
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px
}
.hidden {
  display: none
}
.hidden {
  display: none
}
.visible {
  visibility: visible
}
.visible {
  visibility: visible
}
.outline {
  outline-style: solid
}
.outline {
  outline-style: solid
}
.gap-2 {
  gap: 0.5rem
}
.pl-2 {
  padding-left: 0.5rem
}
.pr-2 {
  padding-right: 0.5rem
}
.stroke-transparent {
  stroke: transparent
}
.stroke-transparent {
  stroke: transparent
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem
}
.font-medium {
  font-weight: 500
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem
}
.pt-0 {
  padding-top: 0px
}
.hidden {
  display: none
}
.h-5 {
  height: 1.25rem
}
.w-5 {
  width: 1.25rem
}
.h-12 {
  height: 3rem
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem
}
.h-5 {
  height: 1.25rem
}
.w-5 {
  width: 1.25rem
}
.leading-relaxed {
  line-height: 1.625
}
.pointer-events-none {
  pointer-events: none
}
.shrink-0 {
  flex-shrink: 0
}
.border-b {
  border-bottom-width: 1px
}
.border-0 {
  border-width: 0px
}
.border-b {
  border-bottom-width: 1px
}
.border-t {
  border-top-width: 1px
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-float {
  animation: float 2s ease-in-out infinite;
}
.bottom-8 {
  bottom: -5rem !important;
}
nav a {
  font-size: 16px;
}

.hover\:scale-105:hover {
  transform: scale(1.02);
}

.hover\:scale-110:hover {
  transform: scale(1.1);
}

.hover\:shadow-xl:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Header slide-down on load */
@keyframes headerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header-animate {
  animation: headerSlideDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animation-delay-200 {
  animation-delay: 0.2s;
  opacity: 0;
}

.animation-delay-400 {
  animation-delay: 0.4s;
  opacity: 0;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.hover\:scale-110:hover {
  transform: scale(1.1);
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.bg-gradient-radial {
  background: radial-gradient(ellipse at center, rgba(212, 165, 116, 0.15) 0%, rgba(10, 10, 10, 1) 70%);
}

.group:hover .icon-hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px -5px rgba(212, 165, 116, 0.4), 0 8px 10px -6px rgba(212, 165, 116, 0.3);
}

/* Lounge amenity card – Figma-matching hover effects */
.lounge-amenity-card:hover {
  box-shadow: 0 10px 15px -3px rgba(212, 165, 116, 0.1), 0 4px 6px -4px rgba(212, 165, 116, 0.1);
  border-color: color-mix(in oklab, var(--primary) 50%, transparent);
}
.lounge-amenity-card h3 {
  transition: color 0.3s ease;
}
.lounge-amenity-card:hover h3 {
  color: var(--primary);
}
.lounge-amenity-card:hover .lounge-amenity-icon {
  background-color: rgba(212, 165, 116, 0.2);
  box-shadow: 0 10px 15px -3px rgba(212, 165, 116, 0.2), 0 4px 6px -4px rgba(212, 165, 116, 0.2) !important;
}
.lounge-amenity-icon svg {
  transition: transform 0.3s ease;
}
/*.lounge-amenity-card:hover .lounge-amenity-icon svg {*/
/*  transform: scale(1.1) rotate(5deg);*/
/*}*/
.lounge-amenity-icon:hover {
    transform: scale(1.1);
    rotate: 5deg;
}

/* Lounge CTA section */
.lounge-cta {
  box-shadow: 0 0 30px rgba(212, 165, 116, 0.05);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.lounge-cta:hover {
  box-shadow: 0 0 40px rgba(212, 165, 116, 0.1);
  border-color: rgba(212, 165, 116, 0.3);
}
.lounge-cta-btn-primary {
  box-shadow: 0 4px 14px rgba(212, 165, 116, 0.3);
}
.lounge-cta-btn-primary:hover {
  background-color: rgba(212, 165, 116, 0.9);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.4);
}
.lounge-cta-btn-outline:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(212, 165, 116, 0.25);
}

/* ========== Events page – animations & hover (Figma-style) ========== */

/* Filter buttons */
.events-filter-btn {
  cursor: pointer;
  background-color: var(--secondary);
  color: var(--foreground);
  border: 1px solid var(--border);
}
.events-filter-btn.events-filter-active {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.25);
}
.events-filter-btn:not(.events-filter-active):hover {
  transform: scale(1.05);
  background-color: rgba(212, 165, 116, 0.15);
  border-color: rgba(212, 165, 116, 0.4);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.25);
}
.events-filter-btn:active {
  transform: scale(0.98);
}

/* Event card – lift, shadow glow, border highlight */
.events-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease,
              opacity 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.events-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 165, 116, 0.5);
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.35),
              0 0 0 1px rgba(212, 165, 116, 0.12),
              0 0 20px rgba(212, 165, 116, 0.08);
}

/* Event card image zoom on hover */
.events-card-img-wrap img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.events-card:hover .events-card-img-wrap img {
  transform: scale(1.06);
}

/* Reserve Spot button */
.events-reserve-btn:hover {
  background-color: rgba(212, 165, 116, 0.9);
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(212, 165, 116, 0.35);
}
.events-reserve-btn {
  font-size: 16px !important;
}

/* ========== Shop page – animations & hover (Figma-style) ========== */

/* Hero entrance – staggered fade-in up */
.shop-hero-title {
  opacity: 0;
  animation: shopFadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.shop-hero-title:nth-child(1) { animation-delay: 0.1s; }
.shop-hero-title:nth-child(2) { animation-delay: 0.25s; }
.shop-hero-subtitle {
  opacity: 0;
  animation: shopFadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.4s;
}
.shop-hero-desc {
  opacity: 0;
  animation: shopFadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.55s;
}
.shop-hero-note {
  opacity: 0;
  animation: shopFadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.65s;
}
@keyframes shopFadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Notice banner – fade in */
.shop-notice {
  opacity: 0;
  animation: shopFadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}
@keyframes shopFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Filter buttons – hover & active */
.shop-filter-btn {
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.shop-filter-btn:hover {
  transform: scale(1.05);
  /* box-shadow: 0 4px 12px rgba(212, 165, 116, 0.25); */
}
.shop-filter-btn:active {
  transform: scale(0.98);
}
.shop-filter-btn.shop-filter-btn-secondary:hover {
  background-color: rgba(212, 165, 116, 0.15);
  border-color: rgba(212, 165, 116, 0.4);
  color: var(--primary);
}

/* Product card – lift, shadow, image zoom; smooth on article hover */
.shop-card {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 165, 116, 0.12);
}
.shop-card-img-wrap {
  overflow: hidden;
  position: relative;
}
.shop-card-img-wrap img {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-card:hover .shop-card-img-wrap img {
  transform: scale(1.08);
  filter: blur(5px);
}
/* Dark overlay on article hover – smooth fade-in */
.shop-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.shop-card:hover .shop-card-overlay {
  opacity: 1;
}
/* “View Details” button – smooth fade + scale on article hover */
.shop-card-view-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 0.375rem;
  opacity: 0;
  transform: scale(0.9) translateY(10px);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.08s,
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
  pointer-events: auto;
}
.shop-card:hover .shop-card-view-details {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.shop-card-view-details svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}
.shop-card-view-details:hover {
  transform: scale(1.1);
}
/* Thin accent line at bottom of card */
.shop-card-accent {
  height: 4px;
  background: var(--primary);
  border-radius: 0 0 0.5rem 0.5rem;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition: transform 0.35s linear, opacity 0.35s linear;
}
.shop-card:hover .shop-card-accent {
  transform: scaleX(1);
  opacity: 1;
}
/* Product grid – scroll reveal with stagger */
.shop-card-reveal {
  opacity: 1;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-card-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.shop-card-reveal.visible:nth-child(1) { transition-delay: 0s; }
.shop-card-reveal.visible:nth-child(2) { transition-delay: 0.06s; }
.shop-card-reveal.visible:nth-child(3) { transition-delay: 0.12s; }
.shop-card-reveal.visible:nth-child(4) { transition-delay: 0.18s; }
.shop-card-reveal.visible:nth-child(5) { transition-delay: 0.24s; }
.shop-card-reveal.visible:nth-child(6) { transition-delay: 0.3s; }
.shop-card-reveal.visible:nth-child(7) { transition-delay: 0.36s; }
.shop-card-reveal.visible:nth-child(8) { transition-delay: 0.42s; }

/* Nav link hover – underline slide */
.shop-nav-link {
  position: relative;
  transition: color 0.25s ease;
}
.shop-nav-link:hover {
  color: #d4a574;
}
.shop-nav-link:hover::after,
.shop-nav-link.text-primary::after {
  width: 100%;
}
#shop-filters button {
  font-size: 1rem;
  border-color: transparent;
}
#shop-filters button.bg-primary {
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.25);
}
/* Footer link hover – smooth color + translate */
footer a:not([class*="inline-block"]) {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

footer a:not([class*="inline-block"]):hover {
  transform: translateX(3px);
  color: #d4a574;
}

footer h3 {
  font-size: 1.125rem;
}
footer ul {
  font-size: 16px !important;
}
footer ul li {
  margin-bottom: 1rem !important;
}
footer p, footer .flex-col a {
  font-size: .875rem;
}
footer .footer-notice p {
  font-size: .75rem;
}
.hover\:scale-105:hover {
  --tw-scale-x: 1.02 !important;
  --tw-scale-y: 1.02 !important;
}




.alignwide{width:100%;}
.current-menu-item a {
    color: #d4a574;
}
#Custom-btn > div > a {
    padding: 0px;
}
#the-experience-sec{
    position: relative;
}
#lounge .absolute.inset-0 , #lounge .absolute.inset-0 img{
    z-index: -1;
}
#about{
    padding: 50px 41px;
}

#get-in-touch-box-sec_herf .wp-block-button__link.wp-element-button{
    background-color: #1a1a1a !important;
    color: var(--muted-foreground) !important;
    text-align: center;
}

div#why-choose-us {
    padding: 50px 41px;
}
div#lounge , #get-in-touch, #lounge-content-sec {
    padding: 50px 41px;
}

div#home {
    padding: 0px 100px;
}
 #shop_banner{
    padding:180px 23px 54px 23px;
}
#shop_notice_bar {
    padding: 60px 41px 0px 41px;
}

.center-line {
  position: relative;
  /* padding-top: var(--wp--preset--spacing--60); */
  padding-bottom: 23px !important;
}


.center-line::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 5rem; /* 👈 fixed width */
  height: 4px;
  background-color: #d4a574;
}
.lounge-membership > .cigar-svg-image > div{
  width:100%; display:flex; justify-content:center; align-items:center;
}

/* Make button content align properly */
#Custom-btn .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Smooth animation for arrow */
#Custom-btn .wp-block-button__link span {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Move arrow on hover */
#Custom-btn .wp-block-button__link:hover span {
  transform: translateX(5px);
}

#Custom-btn .wp-block-button__link span {
  display: inline-flex;       /* better than inline-block */
  align-items: center;        /* vertically center */
  line-height: 1;             /* removes extra space */
  transition: transform 0.3s ease;
}

#Custom-btn .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
#Custom-btn .wp-block-button__link span {
  font-size: 24px;   /* tweak as needed */
  margin-left:10px;
  line-height: 0.8;
}
@media (max-width: 767px) {
    
    div#contact-faq {
    margin: 22px;
}

    div#get-in-touch {
    padding: 50px 22px;
}

    .event-host-sec{
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}
    #shop_banner {
  padding: 180px 10px 54px 10px;
}
#lounge-content-sec {
  padding: 0px 20px;
    padding-bottom: 0px;
}
#shop_notice_bar {
  padding: 60px 20px 0px 20px;
}
#all-products {
  padding: 0px 20px !important;
}
    #lounge-cols {
  display: inline-block;
  width: 100%;
  margin-top:0px;
}
#lounge-cols .wp-block-column {
  display: inline-block;
  width: 50%;
  float: left;
  margin-bottom: 20px;
}
    #about .one-row-cols {
  width: 100% !important;
  display: inline-block!important;
}
    #about .one-row-cols .wp-block-column {
  float: left !important;
  display: inline-block !important;
  width: 33.33% !important;
}

   #about .one-row-cols .wp-block-column  .text-xs { 
       padding:0px 10px !important;
       line-height:1.7 !important;
   }

    #about .about-main-col {
  margin-top: 0px;
  padding-top: 0px !important;
}

    div#home {
    padding: 0px 10px;
}
#about {
  padding: 50px 20px;
  margin-bottom: 0px;
}
#home h2 {
  font-size: 3rem !important;
  line-height: 1 !important;
}
#lounge .wp-block-cover__image-background {
  object-position: 44% 0%;
}
#lounge {
  padding: 80px 20px 50px 20px !important
}
#why-choose-us {
  padding: 100px 20px 60px 20px !important
}

#location-content {
  padding: 50px 20px;
  margin-bottom: 0px;
}
.d-none {
  display: none;
}

}
@media (min-width: 768px) and (max-width: 868px) {
  .event-host-sec {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
}

@media (min-width: 869px) {
  .event-host-sec {
    margin-left: 46px !important;
    margin-right: 46px !important;
  }
}

@media (min-width: 768px) {

#contact-banner {
  padding: 130px 10px 139px 10px;
}

  .event-host-sec {
    margin-left: 46px ;
    margin-right: 46px ;
  }
  .leading-relaxed {
    line-height: 1.625 !important;
}
}
#Custom-btn .wp-block-button:hover {
box-shadow: 0 14px 20px -3px rgba(212, 165, 116, 0.2), 0 5px 6px -4px rgba(212, 165, 116, 0.5) !important;
}

.membership-icon {
  display: flex;
align-items: center;
justify-content: center;
}

.bg-card:hover {
    box-shadow: 0 10px 15px -3px rgba(212, 165, 116, 0.1), 0 4px 6px -4px rgba(212, 165, 116, 0.1);
    border-color: 
 color-mix(in oklab, var(--primary) 50%, transparent);
}

.bg-card:hover {
    box-shadow: 0 10px 15px -3px rgba(212, 165, 116, 0.1), 0 4px 6px -4px rgba(212, 165, 116, 0.1);
    border-color: 
 color-mix(in oklab, var(--primary) 50%, transparent);
}

.bg-card:hover .membership-icon div{
    background-color: rgba(212, 165, 116, 0.2);
    box-shadow: 0 10px 15px -3px rgba(212, 165, 116, 0.2), 0 4px 6px -4px rgba(212, 165, 116, 0.2) !important;
    padding: 5px;
}

.bg-card .cigar-svg-image:hover {
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.why-choose-icon:hover {
  transform: rotate(12deg) scale(1.1);
}


.wp-block-column[data-column-link] {
  cursor: pointer;
  position: relative;
}


.wp-block-column.has-text-align-center {
  text-align: center;
}
.wp-block-column.has-text-align-center .wp-block-button { justify-content: center; }




.bottom-line {
  border-radius: 0 0 0.5rem 0.5rem; 
}


.mobile-menu-button {
  width: 2.5rem;
  height: 2.5rem;
  border: transparent;
  border-radius: 0.375rem;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.28rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

/* .mobile-menu-button:hover {
  border-color: rgba(212, 165, 116, 0.5);
  background: rgba(0, 0, 0, 0.6);
} */

.mobile-menu-line {
  width: 1.5rem;
  height: 3px;
  border-radius: 999px;
  background: #f5f5f5;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.mobile-menu-button.open .mobile-menu-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-button.open .mobile-menu-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.open .mobile-menu-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-panel {
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  width: 100%;
  padding: 1.1rem 0 1.25rem;
  border-top: 1px solid rgba(212, 165, 116, 0.22);
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  z-index: 60;
}

.mobile-menu-panel a {
  display: block;
  font-size: 1.05rem;
  padding: 0.8rem 1.6rem;
}


.shop-card p.text-sm {
    min-height: 40px;
}

footer h3 {
    font-weight: bold;
}

.events-card h3 {
 font-weight: 500;
}
.events-card .leading-relaxed {
    font-size: 16px;
}

#why-choose-us .bg-card:hover  h3{
color: var(--primary);
}

#location-content .bg-card:hover p {
color: var(--primary);
}

.social-icon-glow {
position: relative;
overflow: visible;
box-shadow: inset 0 0 0 1px rgba(212, 165, 116, 0.08);
transition: transform 0.28s ease, border-color 0.28s ease,
box-shadow 0.28s ease, background-color 0.28s ease;
}

.social-icon-glow::after {
content: "";
position: absolute;
left: 50%;
bottom: -10px;
width: 68%;
height: 12px;
transform: translateX(-50%) scale(0.8);
border-radius: 999px;
background: radial-gradient(
ellipse at center,
rgba(212, 165, 116, 0.45) 0%,
rgba(212, 165, 116, 0.18) 42%,
rgba(212, 165, 116, 0) 80%
);
opacity: 0;
transition: opacity 0.28s ease, transform 0.28s ease;
pointer-events: none;
}

.social-icon-glow:hover,
.social-icon-glow:focus-visible {
transform: none !important;
border-color: rgba(212, 165, 116, 0.6);
box-shadow: 0 6px 18px #d4a5744a;
}

.social-icon-glow:hover::after,
.social-icon-glow:focus-visible::after {
opacity: 1;
transform: translateX(-50%) scale(1);
}


.events-card-img-wrap img {
    width: 236px;
    height: 280px !important;
}

