/****************************/
/* Variables    			*/
/****************************/
:root {
    --black: #453935;
    --white: #fff;
}

/****************************/
/* Global css			    */
/****************************/

html, body {
    overscroll-behavior: none;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;    /* IE 10+ */
}

body {
    font-size: 16px;
    font-weight: 300;
    color: #453935;
    font-family: "Aeonik Pro", sans-serif;
    letter-spacing: -1px;
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none;               /* Chrome, Safari, Opera */
}
#wrapper {
    overflow: hidden;
}
#page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    flex-grow: 1;
    display: flex;
}
 /* Scrolltrigegr Fix */
.pin-spacer {
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
}
 /* Removed Default WP Content */
 .page {margin: 0;}
 .entry-content {margin: 0 !important;}
 .entry-header {display:none;}
 .entry-footer {display: none;}

/****************************/
/* Reusables			    */
/****************************/

/* Positions */
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.abs-bl {
    position: absolute;
    bottom: 0;
    left: 0%;
    transform: translate(0,0);
}
/* Displays */
.block {
    display: block;
}
.inline {
    display: inline-block;
}
.flex {
    display: flex;
}
.inline-flex {
    display: inline-flex;
}

/* Flex Properties */
.flex-column {
    flex-direction: column;
}
.flex-row {
    flex-direction: row;
}
.flex-align-center {
    align-items: center;
}
.flex-align-baseline {
    align-items: baseline;
}
.flex-space-between {
    justify-content: space-between;
}
.column-25 {
    flex: 0 0 25%;
}
.column-50 {
    flex: 0 0 50%;
}
.column-100 {
    flex: 0 0 100%;
}
.gap-40 {
    gap: 40px;
}

/* Sizes */
.width-100 {
    width: 100%;
}
/* Font Weights */
.fw-100 {
    font-weight: 100;
}
/* Paddings */
.padding-vert-40 {
    padding: 40px 0;
}
.padding-top-40 {
    padding: 40px 0 0 0;
}
.padding-vert-60 {
    padding: 60px 0;
}
.padding-top-120 {
    padding: 120px 0 0 0;
}

/* Margins */
.no-margin {
    margin: 0;
}

/* Aligns */
.ta-center {
    text-align: center;
}
.ta-right {
    text-align: right;
}

/* Text Transforms */
.uppercase {
    text-transform: uppercase;
}

/* Borders */
.border-bottom {
    border-bottom: 1px solid var(--black);
}

/* Buttons */
.button {
/*     padding: 10px 25px; */
	padding: 10px 10px 10px 25px;
    border-radius: 50px;
}

/* Cursors */
.pointer {
    cursor: pointer;
}

/* z-index */
.z-999 {
    z-index: 999;
}

/* Image animations */
.reveal {
    visibility: hidden;
    position: relative;
    /* width: 80%;
    height: 80%;
    max-width: 500px; */
    overflow: hidden;
}
.reveal img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform-origin: left;
}

/* Buttons */
.btn {
    position: relative;
    display: inline-block;
    color: var(--black);
    border: 1px solid var(--black);
    padding: 10px 120px;
    text-decoration: none;
    overflow: hidden;
}
.btn-white {
    position: relative;
    display: inline-block;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 10px 120px;
    text-decoration: none;
    overflow: hidden;
}

/* Scrolling */
.no-scroll {
    overflow:hidden
}

/****************************/
/* Header			        */
/****************************/
/* header .menu-container span {
    margin-right: 10px;
    font-size: 1.5rem;
    color: #fff;
} */
body:not(.single-product) header .menu-container span, body:not(.single-product) header .basket-container span {
    margin-right: 10px;
    font-size: 1.5rem;
    color: #000;
}
.single-product header .menu-container span, .single-product header .basket-container span {
    margin-right: 10px;
    font-size: 1.5rem;
    color: #000;
}
/* .single-product header .logo-container img{
    filter: invert(1);
} */
svg#bullet:not(footer svg#bullet) {
    width: 20px;
    height: 20px;
    fill: #453935;
}
footer svg#bullet {
    width: 20px;
    fill: #000;
}

header svg#bullet,
header svg#search {
    width: 20px;
    height: 20px;
}
svg#bullet {
    width: 40px;
    height: 40px;
}
header .white-button svg#bullet,
header .white-button svg#search {
    width: 20px;
    height: 20px;
    fill: #000;
}
.white-button svg#bullet {
    fill: #fff;
}
.single-product .white-button svg#bullet {
    fill: #000;
}
.black-button svg#bullet {
    fill: #000;
}

svg#basket:not(footer svg#basket) {
    width: 20px;
    height: 20px;
    fill: #453935;
}
footer svg#basket {
    width: 20px;
    fill: #000;
}

header svg#basket,
header svg#search {
    width: 20px;
    height: 20px;
}
svg#basket {
    width: 40px;
    height: 40px;
}
header .white-button svg#basket,
header .white-button svg#search {
    width: 20px;
    height: 20px;
    fill: #000;
}
.white-button svg#basket {
    fill: #fff;
}
.single-product .white-button svg#basket {
    fill: #000;
}
.black-button svg#basket {
    fill: #000;
}

/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
/*     background: rgba(0, 0, 0, 0.8); */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.popup-content {
    background: rgba(0, 0, 0, .8);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 60px 40px 40px;
    max-width: 800px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.popup-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.popup-text h2 {
    color: #fff;
    font-size: 2.2em;
    font-weight: bold;
    margin: 0 0 15px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.popup-text h3 {
    color: #fff;
    font-size: 2.2em;
    font-weight: bold;
    margin: 0 0 30px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.popup-text p {
    color: #fff;
    font-size: 1.4em;
    font-weight: 500;
    margin: 10px 0;
    letter-spacing: 1px;
    line-height: 1.4;
}

.highlight {
    color: #fff;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.close-button {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.close-button:hover {
    background: #fff;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .popup-content {
        padding: 40px 25px 30px;
        margin: 20px;
    }
    
    .popup-text h2,
    .popup-text h3 {
        font-size: 1.6em;
        letter-spacing: 1px;
    }
    
    .popup-text p {
        font-size: 1.1em;
    }
    
    .close-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .popup-text h2,
    .popup-text h3 {
        font-size: 1.3em;
    }
    
    .popup-text p {
        font-size: 1em;
    }
}

/****************************/
/* Footer			        */
/****************************/
.copyright {
    font-size: 30px;
    font-weight: 100;
}

@media (max-width: 480px) {
    .copyright {
        font-size: 20px;
    }
}

.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.marquee-content {
    font-size: 20rem;
    line-height: 18rem;
    font-weight: 900;
    display: inline-block;
    letter-spacing: -10px;
    animation: marquee 120s linear infinite; /* Slower scrolling (120 seconds) */
}

@media (max-width: 768px) {
    .marquee-content {
        font-size: 15rem;
        line-height: 14rem;
    }
}

@media (max-width: 480px) {
    .marquee-content {
        font-size: 8rem;
        line-height: 7rem;
    }
}

@keyframes marquee {
    from {
        transform: translateX(0%); /* Start from within the viewport */
    }
    to {
        transform: translateX(-100%); /* Scroll out completely */
    }
}

/****************************/
/* Products			        */
/****************************/
.product-category-title {
    font-size: 10vw;
    font-weight: 900;
    line-height: 10vw;
    color: #fff;
    letter-spacing: -8px;
}
@media (max-width: 480px) {
    .product-category-title {
        letter-spacing: -2px;
    }
}

/****************************/
/* CF7			 			*/
/****************************/

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], select:not(#posts_per_page), textarea {
	color: var(--black);
    border-radius: 0;
    padding: 10px;
    width: 100%;
    border: 2px solid var(--black);
    outline: none !important;
    background: transparent;
}
input:hover,
input:focus,
textarea:hover,
textarea:focus {
    border: 2px solid var(--black);
}
button, input[type="button"], input[type="reset"], input[type="submit"] {
	position: relative;
    display: inline-block;
    color: var(--black);
    border: 1px solid var(--black);
    padding: 10px 120px;
    text-decoration: none;
    overflow: hidden;
    background: transparent;
}
.grecaptcha-badge {
	display: none !important;
}

/****************************/
/* 404			 			*/
/****************************/
.error404 .page-title {
    font-size: 10vw;
    font-weight: 900;
    line-height: 10vw;
    letter-spacing: -8px;
}
.error404 .page-subtitle {
    font-size: 5vw;
    font-weight: 400;
    line-height: 5vw;
    letter-spacing: -4px;
}


/****************************/
/* Home			 			*/
/****************************/
.home .rishop-container {
    display: flex;
    align-items: center;
    width: 100%;
}
.home .rishop-text {
	font-size: 6rem;
    font-weight: 900;
    line-height: 6rem;
    margin-right: 20px;
    white-space: nowrap;
    flex-shrink: 0; /* Prevent text from shrinking */
}
.home .arrow-container {
    height: 2px;
    position: relative;
    background-color: #000;
    /* Width will be animated from 0 to 100% */
    min-width: 0; /* Allow width to start at 0 */
	max-width: 50%;
}
.home .arrow-container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transform-origin: center;
    width: 30px;
    height: 30px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    background: transparent;
}