/* ==========================================================================
   XURUBITA THEME - MAIN STYLES
   ========================================================================== */

/* ==========================================================================
   CSS RESET & BASE
   ========================================================================== */
  
   @font-face {
    font-family: 'Monigue';
    src: url('../../fonts/Monigue-Regular.woff2') format('woff2'),
        url('../../fonts/Monigue-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../../fonts/Gilroy-Regular.woff2') format('woff2'),
        url('../../fonts/Gilroy-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../../fonts/Gilroy-Bold.woff2') format('woff2'),
        url('../../fonts/Gilroy-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   CSS VARIABLES - GLOBAL COLORS & SETTINGS
   ========================================================================== */

:root {
    /* Brand Colors */
    --color-primary: #e63a1e;
    --color-red: #e63a1e;       /* Red primary */
    --color-secondary: #fdc6e0;
    --color-pink: #fdc6e0;      /* Pink secondary */
    --color-black: #000;
    --color-white: #fff;
    --color-gray-light: var(--color-gray-light);
    --color-gray-medium: #666;
    --color-gray-dark: #333;
    
    /* Typography */
    --font-primary: 'Gilroy', sans-serif;
    --font-heading: 'Monigue', cursive;
    --font-script: 'Monigue', cursive;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;
    --transition-cubic: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 50%;
    
    /* Shadows */
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
    --shadow-md: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}


body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-white);
    overflow-x: hidden;
    position: relative;
}

/* Fixed background for iOS compatibility */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../img/bg_xurubita.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    mix-blend-mode: multiply;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
p{
    margin-bottom: 1.3rem;
}
.container{
    max-width: 1460px;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 1rem;
}
h1 {
    font-family: var(--font-heading),'Gilroy', sans-serif;
    font-weight: 300;
    font-size: 3rem;
}

@media (min-width: 992px){
    h1{
        font-size: 5rem;
    }
    h2{
        font-size: 2.2rem;
    }
    h3{
        font-size: 1.7rem;
    }
    h4{
        font-size: 1.3rem;
    }
    h5{
        font-size: 1.4rem;
    }
}

.monigue-font {
    font-family: var(--font-heading);
}

/* Section headings use Monigue font with increased sizes */
.section-title,
.hero-title h1,
.video-section h2,
.cta-title h2,
.instagram-title,
.heading-font {
    font-family: var(--font-heading);
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */

.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.announcement-bar.hidden {
    transform: translateY(-100%);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.625rem 3rem;
    position: relative;
}

.announcement-text {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 300;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

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

.announcement-countdown {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-pink);
    padding: 0.25rem 0.75rem;
    margin-left: 0.75rem;
}

.announcement-countdown::before {
    content: 'Coming soon';
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-black);
    margin-right: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.countdown-timer {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-black);
    letter-spacing: 0.05em;
}

.announcement-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.announcement-close:hover {
    opacity: 0.7;
}

.announcement-close svg {
    display: block;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

body.announcement-visible .site-header {
    top: 2.8rem;
}

.site-header.scrolled {
    background-color: var(--color-red);
    padding: 0.75rem 0;
}

.header-container {
    max-width: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-center {
    position: absolute;
    width: 11rem;
}

.logo-center a{
    display: block;
    width: 100%;
}
@media (min-width: 992px){
    
    
    .logo-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 22rem;
    }
}

.logo-center svg {
    width: 100%;
    height: auto;
    max-height: 3.5rem;
    color: #fff;
    transition: all var(--transition-normal);
    display: block;
}

/* Logo & Icons color control - Default (non-home pages): red */
body:not(.home):not(.page-template-page-home) .site-header:not(.scrolled) .logo-center svg,
body:not(.home):not(.page-template-page-home) .site-header:not(.scrolled) .header-icon svg {
    color: var(--color-red);
}

/* Logo & Icons color control - Home: white */
body.home .logo-center svg,
body.home .header-icon svg,
body.page-template-page-home .logo-center svg,
body.page-template-page-home .header-icon svg {
    color: var(--color-white);
}

/* Logo & Icons color control - Scrolled state: always white */
.site-header.scrolled .logo-center svg,
.site-header.scrolled .header-icon svg {
    color: var(--color-white);
}

.site-header.scrolled .logo-center svg {
    max-height: 2.5rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

.header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.header-icon:hover {
    transform: scale(1.1);
}

.header-icon svg {
    width: 1.5rem;
    height: auto;
    transition: color var(--transition-normal);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background-color: var(--color-black);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Menu Toggle Button */
.menu-toggle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1002;
}

.menu-toggle:hover {
    transform: scale(1.05);
}

.menu-line {
    width: 1.25rem;
    height: 0.125rem;
    background-color: #fff;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active .menu-line:nth-child(1) {
    transform: translateY(0.5rem) rotate(45deg);
}

.menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .menu-line:nth-child(3) {
    transform: translateY(-0.5rem) rotate(-45deg);
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    min-height: 100vh;
    background-color: var(--color-red);
    z-index: 1003;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}
@media (min-width: 992px){
        
    .mobile-menu-content {
        min-height: 100vh;
    }
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0rem;
    padding-bottom: 0;
}

.mobile-menu-logo svg {
    max-width: 15rem;
    height: auto;
    color: #ffffff;
    min-width: 15rem;
}

.menu-close {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    transition: transform 0.3s ease;
}

.menu-close:hover {
    transform: rotate(90deg);
}

.mobile-menu-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
}
@media (min-width: 992px){
    
.mobile-menu-list {
    min-width: 980px;
}
}

.mobile-menu-list > li {
    margin-bottom: 0;
    display: inline-flex;
    position: relative;
    padding-block: 0.5rem;
}
.mobile-menu-list > li:hover {
    z-index: 1;
}

.mobile-menu-list > li > a {
    display: block;
    padding: 1rem 0;
    font-size: 8.5rem;
    font-family: var(--font-heading);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    text-align: left;
    line-height: 0.8;
    text-transform: uppercase;
}

.mobile-menu-list > li:not(.current-menu-item) > a:hover {
    opacity: 0.6;
}

.mobile-menu-list > li.current-menu-item > a,
.mobile-menu-list > li.current_page_item > a {
    color: var(--color-pink);
}

/* Submenu styles for mobile */
.mobile-menu-list .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}

.mobile-menu-list .sub-menu li {
    margin-bottom: 0;
}

.mobile-menu-list .sub-menu li a {
    display: block;
    padding: 0.75rem 0;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    text-align: left;
    line-height: 1.2;
    opacity: 0.9;
    -webkit-font-smoothing: antialiased;
    text-transform: uppercase;
    padding-left: 2rem;
    display: block;
}

.mobile-menu-list .sub-menu li a:hover {
    opacity: 0.6;
    padding-left: 0.5rem;
}

.mobile-menu-list .sub-menu li.current-menu-item a {
    color: var(--color-pink);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   MAIN CONTENT
   ========================================================================== */

.site-main {
    padding-top: 0 !important;
}

.site-main > *:first-child {
    padding-top: 6rem;
}
@media (min-width: 992px){
        
    .site-main > *:first-child {
        padding-top: 8rem;
    }
}
.page-container{
    margin-bottom: 4rem;
}

/* ==========================================================================
   HOME SECTIONS
   ========================================================================== */

/* Hero Section */
.hero-section {
    position: relative;
    padding-bottom: 4rem;
    margin-bottom: 3rem;
    background-size: cover;
    background-position: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-intro {
    text-align: center;
    color: #fff;
    font-size: 0.975rem;
    line-height: 1.4;
    margin-bottom: 3rem;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
}

.hero-title {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-title h1 {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: normal;
    color: #fff;
    margin: 0;
    text-transform: capitalize;
    letter-spacing: 0.02em;
    line-height: 1;
}

.hero-title h1 span{
    display: block;
    line-height: 0.8;
}
.hero-title h1 span:first-child{
    display: block;
    color: var(--color-pink);
    font-size: 4.5rem;
}
.hero-title h1 span:last-child{
    color: var(--color-pink);
    font-size: 5.5rem;
}
@media (min-width: 992px){
    
    .hero-title h1 span:first-child{
        font-size: 14rem;
    }
    .hero-title h1 span:last-child{
        font-size: 17rem;
        line-height: 0.8;
    }
}

.hero-products {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-products-image {
    position: relative;
    width: 100%;
    max-width: 75rem;
    margin: -3rem auto -6rem;
    z-index: 3;
}
@media (min-width: 992px){
        
    .hero-products-image {
        position: relative;
        width: 100%;
        max-width: 60rem;
        margin: -11rem auto -9rem;
        z-index: 3;
    }
}

.hero-products-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hero image hover effect - desktop only */
.hero-products-image {
    position: relative;
}

.hero-products-image .hero-image-default,
.hero-products-image .hero-image-hover {
    transition: opacity var(--transition-cubic);
}

.hero-products-image .hero-image-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

/* Hover effect only on desktop (min-width: 992px) */
@media (min-width: 992px) {
    .hero-products-image:hover .hero-image-default {
        opacity: 0;
    }
    
    .hero-products-image:hover .hero-image-hover {
        opacity: 1;
    }
}

/* Increase hero-content elements by 20% for screens above 1500px */
@media (min-width: 1500px) {
    .hero-intro {
        font-size: 1.17rem; /* 0.975rem * 1.20 */
        margin-bottom: 3.6rem; /* 3rem * 1.20 */
    }
    
    .hero-title {
        margin-bottom: 2.4rem; /* 2rem * 1.20 */
    }
    
    .hero-title h1 span:first-child {
        font-size: 16.8rem; /* 14rem * 1.20 */
    }
    
    .hero-title h1 span:last-child {
        font-size: 20.4rem; /* 17rem * 1.20 */
    }
    
    .hero-products-image {
        max-width: 72rem; /* 60rem * 1.20 */
        margin: -13.2rem auto -10.8rem; /* -11rem * 1.20, -9rem * 1.20 */
    }
    
    .hero-cta-btn {
        padding: 1.2rem 3.6rem; /* 1rem * 1.20, 3rem * 1.20 */
        font-size: 1.2rem; /* 1rem * 1.20 */
    }
}

/* Hero CTA positioned between hero and products sections (50% in each) */
.hero-section {
    position: relative;
}

.btn-primary.hero-cta-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
    z-index: 10;
    white-space: nowrap;
    background-color: var(--color-pink);
    color: var(--color-black);
}

.btn-primary.hero-cta-btn:hover {
    transform: translate(-50%, 50%) scale(1.05);
    box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.2);
    background-color: var(--color-white);
    color: var(--color-black);
}

/* Products Section */
.products-section {
    padding: 1rem 0 2rem;
    background-color: var(--color-gray-light);
}

@media (min-width: 992px){
    .products-section {
        padding-top: 4rem;
        background-color: var(--color-gray-light);
    }
    body .by-xuso-logo{
        max-width: 20rem;
        width: 100%;
        margin-bottom: 2rem;
    }
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: -1rem;
}

.section-title {
    font-size: 7.5rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: -0.05rem;
    line-height: 1;
}
.by-xuso-logo{
    max-width: 12rem;
    width: 100%;
    margin-bottom: 1.7rem;
}

.section-subtitle {
    font-family: 'Monigue', cursive;
    font-size: 1.5rem;
    color: var(--color-gray-medium);
}

.section-navigation {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}

.section-navigation-text {
    padding-block: 3rem;
    font-size: 1rem;
    margin: 0;
    color: var(--color-gray-dark);
    font-weight: bold;
}
@media (max-width: 991px){
        
    .section-navigation-text {
        padding-block: 0rem;
    }
}

@media (max-width: 991px){}

.nav-arrow {
    width: 3.5rem;
    height: 3.5rem;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.nav-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-arrow:hover {
    opacity: 0.7;
}

.products-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.product-description {
    max-width: 100%;
}

.product-description h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.product-description p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--color-gray-dark);
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.product-artesanal-badge {
    width: 5.7rem;
    height: auto;
}

.products-carousel {
    position: relative;
    max-width: 100%;
}

.product-item {
    position: relative;
    padding: 1rem;
    max-width: 100%;
    overflow: hidden;
}

.product-item img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: 1;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.product-item:hover img {
    transform: scale(1.05);
}

/* Fullscreen Video Section */
.fullscreen-video-section {
    width: 100%;
    position: relative;
    background-color: #000;
    overflow: hidden;
    aspect-ratio: 9 / 16;
}

.fullscreen-video-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile video visible by default, desktop hidden */
.fullscreen-video-mobile {
    display: block;
}

.fullscreen-video-desktop {
    display: none;
}

/* Video Controls for Fullscreen Section */
.fullscreen-video-section .video-controls {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fullscreen-video-section:hover .video-controls {
    opacity: 1;
}

.fullscreen-video-section .video-controls button {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.fullscreen-video-section .video-controls button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.fullscreen-video-section .video-controls button svg {
    width: 1.5rem;
    height: 1.5rem;
    pointer-events: none;
}

.fullscreen-video-section .video-controls .play-icon,
.fullscreen-video-section .video-controls .pause-icon {
    display: none;
}

.fullscreen-video-section .video-controls button.is-paused .play-icon {
    display: block;
}

.fullscreen-video-section .video-controls button:not(.is-paused) .pause-icon {
    display: block;
}

.fullscreen-video-section .video-controls .unmuted-icon,
.fullscreen-video-section .video-controls .muted-icon {
    display: none;
}

.fullscreen-video-section .video-controls button.is-muted .muted-icon {
    display: block;
}

.fullscreen-video-section .video-controls button:not(.is-muted) .unmuted-icon {
    display: block;
}

/* Desktop breakpoint - show desktop video, hide mobile */
@media (min-width: 992px) {
    .fullscreen-video-section {
        aspect-ratio: 16 / 9;
    }
    
    .fullscreen-video-mobile {
        display: none;
    }
    
    .fullscreen-video-desktop {
        display: block;
    }
}

/* Golden Ticket Section */
.golden-ticket-section {
    position: relative;
    background-color: #E6C7D9;
    padding: 5rem 0 6rem;
    overflow: hidden;
}

.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    pointer-events: none;
    z-index: 1;
    background-image: url('../../img/confeti.svg');
    background-repeat: repeat;
    background-size: 100% auto;
    animation: confettiFall 20s linear infinite;
    opacity: 0.7;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

.golden-ticket-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.golden-ticket-text {
    text-align: center;
    max-width: 100%;
}

.golden-ticket-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 2.5rem;
    line-height: 1;
}

.golden-ticket-title-main {
    font-family: var(--font-heading);
    font-weight: normal;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.9;
}

.golden-ticket-title-highlight {
    font-family: var(--font-heading);
    font-weight: normal;
    color: var(--color-red);
    text-transform: uppercase;
    line-height: 0.8;
}
@media (min-width: 992px){
        
    .golden-ticket-title {
        font-size: 6.2rem;
    }

}

.golden-ticket-subtitle {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.4;
    color: var(--color-black);
    margin-top: 1rem;
    margin-inline: auto;
    padding-inline: 3rem;
}

.golden-ticket-image {
    width: 100%;
    max-width: 45rem;
}

.golden-ticket-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: -3rem auto -3rem;
}

/* Tablet styles */
@media (min-width: 768px) {
    .golden-ticket-section {
        padding: 5rem 0;
    }
    
    .golden-ticket-title-main {
    }
    
    .golden-ticket-title-highlight {
    }
    
    .golden-ticket-subtitle {
        font-size: 1.125rem;
    }
    
    .confetti-1 {
        width: 8rem;
        left: 8%;
    }
    
    .confetti-2 {
        width: 9rem;
        right: 10%;
    }
    
    .confetti-3 {
        width: 7rem;
    }
    
    .confetti-4 {
        width: 8.5rem;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .golden-ticket-section {
        padding: 6rem 0;
    }
    
    .golden-ticket-title-main {
    }
    
    .golden-ticket-title-highlight {
    }
    
    .golden-ticket-subtitle {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .confetti-1 {
        width: 10rem;
        left: 10%;
    }
    
    .confetti-2 {
        width: 11rem;
        right: 12%;
    }
    
    .confetti-3 {
        width: 9rem;
    }
    
    .confetti-4 {
        width: 10.5rem;
    }
}

/* Large desktop styles */
@media (min-width: 1440px) {
    .golden-ticket-section {
        padding: 6rem 0;
    }
    
    .golden-ticket-content {
        gap: 3rem;
    }
    
    .golden-ticket-title-main {
    }
    
    .golden-ticket-title-highlight {
    }
    
    .golden-ticket-subtitle {
        font-size: 1.3rem;
    }
    
    .confetti-1 {
        width: 12rem;
        left: 15%;
    }
    
    .confetti-2 {
        width: 13rem;
        right: 15%;
    }
    
    .confetti-3 {
        width: 11rem;
    }
    
    .confetti-4 {
        width: 12.5rem;
    }
}

/* Video Section */
.video-section {
    background-color: #1a1a1a;
    padding: 6rem 0;
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-section h2 {
    color: #fff;
    font-size: 6rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: -0.05rem;
    margin-bottom: 0;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 62.5rem;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Section Fullscreen */
.video-section-fullscreen {
    width: 100%;
    max-height: 75rem;
    overflow: hidden;
    position: relative;
    background-color: #000;
}

.video-section-fullscreen video {
    width: 100%;
    height: auto;
    max-height: 75rem;
    display: block;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0 0;
    background-color: var(--color-gray-light);
    text-align: center;
}
.single-product .cta-section{
    max-width: 1200px;
    margin-inline: auto;
}

.cta-title {
    margin-bottom: 0rem;
}

.cta-title h2 {
    font-size: 6.5rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: -0.05rem;
    color: var(--color-primary);
    margin: 0;
    line-height: 1;
}

.cta-title p {
    font-size: 5.6rem;
    text-transform: uppercase;
    line-height: 1;
}

.cta-products {
    display: flex;
    justify-content: center;
    gap: 0rem;
    margin-bottom: 3rem;
}

.cta-product {
    position: relative;
    width: 35rem;
    max-width: 100%;
}

.cta-product img {
    width: 100%;
    aspect-ratio: 1.3;
    object-fit: cover;
}

/* CTA Products Grid - Dynamic products display */
/* Mobile-first: horizontal scroll */
.cta-products-grid {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0 0 3rem 0;
    padding: 0 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.cta-products-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Desktop: centered grid */
@media (min-width: 992px) {
    .cta-products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14.75rem, 1fr));
        gap: 2rem;
        overflow-x: visible;
        justify-content: center;
        max-width: 90rem;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        margin-bottom: 6rem;
    }
}

.cta-products-grid li.product {
    padding: 0;
    text-align: center;
    transition: transform 0.3s ease;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 0 0 75%;
    scroll-snap-align: start;
}

@media (min-width: 576px) {
    .cta-products-grid li.product {
        flex: 0 0 45%;
    }
}

@media (min-width: 768px) {
    .cta-products-grid li.product {
        flex: 0 0 32%;
    }
}

@media (min-width: 992px) {
    .cta-products-grid li.product {
        flex: 1 1 auto;
    }
}

.cta-products-grid li.product:hover {
    transform: translateY(-0.5rem);
}

.cta-products-grid li.product .cta-product-link {
    display: block;
}

.cta-products-grid li.product img {
    width: 100%;
    height: auto;
    border: 2px solid var(--color-red);
    display: block;
}

.cta-product-title {
    font-family: var(--font-primary, 'Gilroy', sans-serif);
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.cta-product-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-product-title a:hover {
    color: var(--color-primary);
}

.cta-product-button {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-primary, 'Gilroy', sans-serif);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary);
    letter-spacing: 0.02em;
}

.cta-product-button:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

.cta-product-button.out-of-stock {
    background: #999;
    border-color: #999;
    color: #fff;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 3rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #000;
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-secondary {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-secondary:hover {
    background-color: #000;
}

/* Brand Section */
.brand-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: url(../../img/bg_choco.webp) no-repeat center center;
    background-size: cover;
    min-height: 70vh;
}


.brand-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.brand-logo {
    width: 100%;
    max-width: 18.75rem;
    margin: 0 auto;
}

.brand-social {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.brand-social a img {
    width: 2.5rem;
    height: auto;
}

/* Instagram Section */
.instagram-section {
    padding: 4rem 0;
    text-align: center;
    position: relative;
    background-color: var(--color-red);
    color: #ffffff;
}

/* Instagram CTA styles */
.instagram-section .btn-primary {
    background-color: var(--color-white);
    color: var(--color-black);
}

.instagram-section .btn-primary:hover {
    background-color: var(--color-pink);
    color: var(--color-black);
}

.instagram-section .instagram-social{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -25px;
    width: 50px;
    height: 50px;
}
.instagram-section .instagram-social img{
    display: block;
    width: 50px;
    height: 50px;
}

.instagram-title {
    font-size: 4rem;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.instagram-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-bottom: 3rem;
}

/* Ensure 2 columns on mobile and tablets */
@media (max-width: 991px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.instagram-item {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.instagram-item:hover {
    transform: scale(1.02);
    opacity: 0.95;
}

.instagram-item img,
.instagram-item video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.instagram-item .instagram-video {
    background-color: #000;
}

/* Video Controls */
.instagram-item .video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.instagram-item:hover .video-controls {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.instagram-item .video-controls button {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.instagram-item .video-controls button:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.instagram-item .video-controls button svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-red);
}

/* Icon visibility states */
.instagram-item .video-controls .play-icon,
.instagram-item .video-controls .pause-icon {
    display: none;
}

.instagram-item .video-controls button.is-paused .play-icon {
    display: block;
}

.instagram-item .video-controls button:not(.is-paused) .pause-icon {
    display: block;
}

.instagram-item .video-controls .unmuted-icon,
.instagram-item .video-controls .muted-icon {
    display: none;
}

.instagram-item .video-controls button.is-muted .muted-icon {
    display: block;
}

.instagram-item .video-controls button:not(.is-muted) .unmuted-icon {
    display: block;
}

/* Desktop: 4 columns grid */
@media (min-width: 992px) {
    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Reusable rocket cursor hover utility class */
.cursor-rocket {
    cursor: pointer;
}

.cursor-rocket:hover {
    cursor: pointer;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */


/* Footer Marquee Section */
.footer-marquee-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

.marquee-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.marquee-line {
    display: flex;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    color: rgba(253, 198, 224, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
    font-size: 8rem;
}

.marquee-line[data-direction="left"] > span {
    animation: scroll-left 250s linear infinite;
    left: -20000px;
}

.marquee-line[data-direction="right"] > span {
    animation: scroll-right 250s linear infinite;
}

.marquee-content {
    display: inline-flex;
    white-space: nowrap;
    padding-right: 2rem;
    will-change: transform;
    line-height: 0.9;
    position: relative;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.footer-logo-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 12rem;
}

.footer-logo {
    width: 100%;
    max-width: 35rem;
    padding: 0 1rem;
}

.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer Content Section */
.site-footer .container {
    padding-block: 3rem  2rem;
}

.footer-payment-methods {
    margin-bottom: 2rem;
}

.footer-payment-methods img {
    width: 100%;
    max-width: 18.75rem;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Footer Menu */
.footer-menu {
    margin-bottom: 1.5rem;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.5rem;
}

.footer-menu-list li {
    margin: 0;
}

.footer-menu-list a {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--color-primary);
    text-decoration: none;
    transition: opacity var(--transition-fast);
    padding: 0.5rem;
}

.footer-menu-list a:hover {
    opacity: 0.7;
}

.footer-legal {
    font-size: 0.75rem;
    color: var(--color-gray-medium);
    margin-top: 1rem;
}

.footer-legal p {
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .marquee-line {
        font-size: clamp(3.6rem, 4vw, 2.5rem);
        line-height: 1;
    }
    
    .footer-logo-wrapper {
        min-height: 8rem;
    }
    
    .footer-logo {
        max-width: 18rem;
    }
    
    .footer-menu-list {
        gap: 0.5rem 1rem;
    }
    
    .footer-menu-list a {
        font-size: 0.8125rem;
    }
}

/* ==========================================================================
   404 ERROR PAGE
   ========================================================================== */

.error-404-section {
    padding: 6rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404-title {
    font-size: 8rem;
    font-weight: 300;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.error-404-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.error-404-description {
    font-size: 1.125rem;
    color: var(--color-gray-medium);
    margin-bottom: 2rem;
}

/* ==========================================================================
   SEARCH FORM
   ========================================================================== */

.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-form .search-field {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 0.125rem solid #ddd;
    font-family: inherit;
    font-size: 1rem;
}

.search-form .search-submit {
    padding: 0.75rem 2rem;
    background-color: #000;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    transition: all 0.3s ease;
}

.search-form .search-submit:hover {
    background-color: var(--color-primary);
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Desktop menu styles */
@media (min-width: 992px) {
    .mobile-menu-list > li > a {
        font-size: 6rem;
        padding: 0.5rem 0;
    }
    
    /* Parent item with submenu */
    .mobile-menu-list > li.menu-item-has-children {
        position: relative;
    }
    
    /* Submenu positioned to the right on desktop */
    .mobile-menu-list .sub-menu {
        position: absolute;
        right: 0;
        top: 0;
        margin: 0;
        padding: 1rem 2rem;
        border-radius: 0.5rem;
        min-width: 15rem;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-1rem);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Show submenu on hover */
    .mobile-menu-list > li.menu-item-has-children:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    .mobile-menu-list .sub-menu li a {
        font-size: 3rem;
        padding: 0.5rem 0;
    }
    
    .mobile-menu-list .sub-menu li a:hover {
        padding-left: 1rem;
    }
}

@media (max-width: 991px) {
    .logo-center svg {
        max-width: 12rem;
        max-height: 3rem;
    }
    
    .hero-intro {
        max-width: 80%;
    }
    
    .hero-title h1 {
        font-size: 5.5rem;
    }
    
    .btn-primary.hero-cta-btn {
        padding: 0.875rem 2rem;
        font-size: 0.875rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .video-section h2 {
        font-size: 4.5rem;
    }
    
    .cta-title h2 {
        font-size: 4rem;
    }
    
    .instagram-title {
        font-size: 3rem;
    }
    
    .products-content {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }
    
    .cta-products {
        flex-direction: column;
        gap: 2rem;
    }
    
    
    .instagram-description {
        max-width: 90%;
    }
}

@media (max-width: 575px) {
    .site-header {
        padding: 0.75rem 0;
    }
    
    .header-container {
        padding: 0 1rem;
    }
    
    .logo-center svg {
        max-width: 11rem;
        max-height: 2.5rem;
    }
    
    .header-actions {
        gap: 1rem;
    }
    
    .header-icon svg {
        width: 1.25rem;
    }
    
    .menu-toggle {
        width: 2.5rem;
        height: 2.5rem;
        gap: 0.25rem;
    }
    
    .menu-line {
        width: 1rem;
    }
    
    .announcement-content {
        padding: 0.625rem 2.5rem 0.625rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .announcement-text {
        font-size: 0.625rem;
        line-height: 1.3;
    }
    
    .announcement-countdown {
        margin-left: 0;
        padding: 0.25rem 0.5rem;
    }
    
    .announcement-countdown::before {
        font-size: 0.625rem;
        margin-right: 0.375rem;
    }
    
    .countdown-timer {
        font-size: 0.75rem;
    }
    
    .announcement-close {
        right: 0.5rem;
        padding: 0.25rem;
    }
    
    .mobile-menu-content {
        padding: 1.5rem;
    }
    
    .mobile-menu-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .mobile-menu-list > li  {
        display: block;
    }
    .mobile-menu-list > li > a {
        font-size: 3rem;
        padding: 0.95rem 0;
    }
    
    .mobile-menu-list .sub-menu li a {
        font-size: 1.5rem;
        padding-block: 0.4rem;
    }
    
    .hero-intro {
        max-width: 95%;
        font-size: 0.75rem;
    }
    
    .hero-title h1 {
        font-size: 3.5rem;
    }
    
    .btn-primary.hero-cta-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 3.6rem;
    }
    
    .video-section h2 {
        font-size: 3.5rem;
    }
    
    .cta-title h2 {
        font-size: 3rem;
    }
    
    .cta-title p {
        font-size: 2.5rem;
    }
    
    
    .cta-product-title {
        font-size: 1rem;
    }
    
    .cta-product-button {
        font-size: 0.8125rem;
        padding: 0.625rem 1.5rem;
    }
    
    .instagram-title {
        font-size: 2.5rem;
    }

        
    .section-navigation-text {
        padding-block: 0rem;
        line-height: 1.2;
    }
}

.wp-block-separator {
    border-top: 1px solid;
    padding-top: 2rem;
    margin-top: 2rem;
}

/* ========================================
   Coming Soon Page
   ======================================== */
.coming-soon-page {
    background: var(--color-primary);
}

.coming-soon-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.coming-soon-content {
    max-width: 40rem;
    width: 100%;
    text-align: center;
}

.coming-soon-logo {
    margin-bottom: 2rem;
}

.coming-soon-logo a {
    display: block;
}

.coming-soon-logo svg,
.coming-soon-logo img {
    width: 100%;
    max-width: 20rem;
    height: auto;
    margin: 0 auto;
    display: block;
}

.coming-soon-text {
    margin-bottom: 2rem;
}

.coming-soon-text p {
    font-family: var(--font-gilroy);
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-white);
    margin: 0;
}

.coming-soon-countdown-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .coming-soon-logo svg {
    }
    
    .coming-soon-text p {
        font-size: 1rem;
    }
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.contact-section {
    padding: 4rem 0;
    min-height: 80vh;
}

.contact-info {
    padding: 2rem;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-description {
    margin-bottom: 2rem;
}

.contact-description p {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-black);
}

/* Social Media Links */
.contact-social {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-full);
    background-color: var(--color-pink);
    color: var(--color-black);
    transition: all var(--transition-normal);
}

.contact-social .social-link:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-0.25rem);
}

.contact-social .social-link img {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-social .social-link svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-form-wrapper {
    padding: 2rem;
}

/* ==========================================================================
   GRAVITY FORMS CUSTOM STYLES
   ========================================================================== */

/* Form Container */
.contact-form-wrapper .gform_wrapper {
    max-width: 100%;
}

.contact-form-wrapper .gform_wrapper form {
    margin: 0;
}

/* Form Body */
.contact-form-wrapper .gform_body {
    width: 100%;
}

/* Fields Container */
.contact-form-wrapper .gform_fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Individual Field */
.contact-form-wrapper .gfield {
    margin: 0;
    padding: 0;
}

/* Labels */
.contact-form-wrapper .gfield_label {
    font-family: var(--font-primary);
    font-weight: bold;
    font-size: 1rem;
    color: var(--color-black);
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form-wrapper .gfield_required {
    color: var(--color-primary);
    margin-left: 0.25rem;
}

/* Input Fields & Textarea */
.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper input[type="url"],
.contact-form-wrapper input[type="number"],
.contact-form-wrapper textarea,
.contact-form-wrapper select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-black);
    background-color: var(--color-white);
    border: 0.125rem solid var(--color-pink);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.contact-form-wrapper input[type="text"]:focus,
.contact-form-wrapper input[type="email"]:focus,
.contact-form-wrapper input[type="tel"]:focus,
.contact-form-wrapper input[type="url"]:focus,
.contact-form-wrapper input[type="number"]:focus,
.contact-form-wrapper textarea:focus,
.contact-form-wrapper select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.1875rem rgba(230, 58, 30, 0.1);
}

.contact-form-wrapper textarea {
    min-height: 10rem;
    resize: vertical;
}

/* Validation */
.contact-form-wrapper .gfield_error input,
.contact-form-wrapper .gfield_error textarea,
.contact-form-wrapper .gfield_error select {
    border-color: var(--color-primary);
}

.contact-form-wrapper .validation_message {
    font-size: 0.875rem;
    color: var(--color-primary);
    margin-top: 0.5rem;
}

/* Form Footer & Submit Button */
.contact-form-wrapper .gform_footer {
    margin-top: 2rem;
    padding: 0;
}

.contact-form-wrapper .gform_button,
.contact-form-wrapper input[type="submit"] {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--color-white);
    background-color: var(--color-primary);
    border: none;
    border-radius: 3.125rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
}

.contact-form-wrapper .gform_button:hover,
.contact-form-wrapper input[type="submit"]:hover {
    background-color: var(--color-black);
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-md);
}

/* Ajax Spinner */
.contact-form-wrapper .gform_ajax_spinner {
    margin-left: 1rem;
}

/* Confirmation Message */
.contact-form-wrapper .gform_confirmation_message {
    padding: 1.5rem;
    background-color: rgba(253, 198, 224, 0.2);
    border: 0.125rem solid var(--color-pink);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-black);
}

/* File Upload */
.contact-form-wrapper .ginput_container_fileupload {
    padding: 1rem;
    background-color: rgba(253, 198, 224, 0.1);
    border: 0.125rem dashed var(--color-pink);
    border-radius: var(--radius-md);
}

/* Multi-Column Fields */
.contact-form-wrapper .gfield_list {
    width: 100%;
}

.contact-form-wrapper .gfield_list table {
    width: 100%;
    border-collapse: collapse;
}

.contact-form-wrapper .gfield_list td {
    padding: 0.5rem;
}

/* Responsive Styles for Contact Page */
@media (max-width: 991px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 2rem 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1rem;
    }
    
    .contact-form-wrapper .gform_button,
    .contact-form-wrapper input[type="submit"] {
        width: 100%;
        padding: 1rem 1.5rem;
    }
}

/* ============================================================
   CUSTOM CURSOR
   Only applies to elements with .cursor-rocket class
   ============================================================ */

.custom-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translate(-15%, -15%) scale(0);
    will-change: transform;
}

.custom-cursor img {
    width: 3rem;
    height: 3rem;
    display: block;
}

.custom-cursor.active {
    opacity: 1;
    transform: translate(-15%, -15%) scale(1);
}

/* Hide default cursor globally */
body,
body * {
    cursor: none !important;
}

/* Disable custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor {
        display: none !important;
    }
    
    body,
    body * {
        cursor: auto !important;
    }
}