#masthead { margin-bottom: 0 !important; }
.bee-slider {
position: relative;
width: 100%;
overflow: hidden;
background: var(--bee-bg2, #F5F1ED);
display: block;
padding: 0;
} .bee-slider__track {
display: flex;
transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
will-change: transform;
} .bee-slide {
min-width: 100%;
position: relative;
display: flex;
align-items: center;
} .bee-slide__link {
display: block;
line-height: 0;
} .bee-slide__img {
display: block;
width: 100%;
height: auto;
} .bee-slide__content {
position: absolute;
z-index: 1;
padding: 0 clamp(24px, 6vw, 100px);
max-width: 600px;
top: 50%;
transform: translateY(-50%);
}
.bee-slide__title {
font-family: 'Cormorant Garamond', Georgia, serif;
font-size: clamp(32px, 5vw, 60px);
font-weight: 600;
color: #ffffff;
line-height: 1.15;
margin: 0 0 12px;
letter-spacing: 0.02em;
}
.bee-slide__subtitle {
font-family: 'Montserrat', sans-serif;
font-size: clamp(13px, 1.8vw, 17px);
font-weight: 400;
color: rgba(255,255,255,0.88);
margin: 0 0 28px;
letter-spacing: 0.04em;
line-height: 1.6;
}
.bee-slide__btns {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.bee-slide__btn {
font-family: 'Montserrat', sans-serif;
font-size: 12px;
font-weight: 500;
letter-spacing: 0.1em;
text-transform: uppercase;
text-decoration: none;
padding: 13px 28px;
border-radius: 3px;
transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
white-space: nowrap;
cursor: pointer;
}
.bee-slide__btn--primary {
background: #ffffff;
color: #2B211C;
border: 1px solid transparent;
}
.bee-slide__btn--primary:hover {
background: #D8C2A6;
color: #2B211C;
}
.bee-slide__btn--secondary {
background: transparent;
color: #ffffff;
border: 1px solid rgba(255,255,255,0.7);
}
.bee-slide__btn--secondary:hover {
background: rgba(255,255,255,0.15);
border-color: #ffffff;
} .bee-slider__arrow {
display: none;
} .bee-slider__dots {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 8px;
z-index: 10;
}
.bee-slider__dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: rgba(255,255,255,0.45);
border: none;
cursor: pointer;
padding: 0;
transition: background 0.2s ease, transform 0.2s ease;
}
.bee-slider__dot.is-active {
background: #ffffff;
transform: scale(1.3);
} @media (max-width: 900px) {
.bee-slide__content {
max-width: 420px;
}
} @media (max-width: 768px) {
.bee-slider { min-height: 220px; }
.bee-slide__content {
padding: 0 16px;
max-width: 80%;
}
.bee-slider__arrow { display: none; }
.bee-slide__btn {
padding: 10px 18px;
font-size: 11px;
}
}
@media (max-width: 480px) {
.bee-slider { min-height: 180px; }
.bee-slide__title { font-size: 20px; }
.bee-slide__subtitle { font-size: 11px; margin-bottom: 16px; }
.bee-slide__btns { gap: 8px; }
.bee-slide__btn { padding: 9px 14px; }
}.bee-featured {
width: 100vw;
position: relative;
left: 50%;
margin-left: -50vw;
padding: 48px 0 56px;
background: var(--bee-white, #fff);
}
.bee-featured__inner {
width: 100%;
padding: 0 clamp(16px, 3vw, 56px);
}
.bee-featured__title {
font-family: 'Cormorant Garamond', Georgia, serif;
font-size: clamp(24px, 3vw, 36px);
font-weight: 600;
color: #2B211C;
letter-spacing: 0.03em;
margin: 0 0 32px;
text-align: center;
} .bee-featured__grid {
display: flex;
align-items: flex-start;
gap: 16px;
overflow-x: auto;
overflow-y: hidden;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
padding-bottom: 12px;
scrollbar-width: thin;
scrollbar-color: #C9BDB4 #F0EBE5;
}
.bee-featured__grid::-webkit-scrollbar {
height: 4px;
}
.bee-featured__grid::-webkit-scrollbar-track {
background: #F0EBE5;
border-radius: 2px;
}
.bee-featured__grid::-webkit-scrollbar-thumb {
background: #C9BDB4;
border-radius: 2px;
} .bee-product-card {
display: flex;
flex-direction: column;
flex: 0 0 220px;
scroll-snap-align: start;
text-decoration: none;
color: #2B211C;
border: 1px solid #E8E0D8;
border-radius: 8px;
overflow: hidden;
background: #fff;
position: relative;
} .bee-product-card__img-wrap {
position: relative;
aspect-ratio: 3 / 4;
overflow: hidden;
background: #F5F1ED;
}
.bee-product-card__img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
background: #fff;
} .bee-product-card__badge {
position: absolute;
top: 10px;
left: 10px;
background: #2B211C;
color: #fff;
font-family: 'Montserrat', sans-serif;
font-size: 10px;
font-weight: 500;
letter-spacing: 0.1em;
text-transform: uppercase;
padding: 3px 8px;
border-radius: 2px;
} .bee-product-card__info {
padding: 12px 14px 8px;
flex: 1;
}
.bee-product-card__name {
font-family: 'Montserrat', sans-serif;
font-size: 12px;
font-weight: 500;
color: #2B211C;
line-height: 1.4;
margin: 0 0 6px;
letter-spacing: 0.02em;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.bee-product-card__price {
font-family: 'Montserrat', sans-serif;
font-size: 13px;
font-weight: 600;
color: #2B211C;
letter-spacing: 0.02em;
}
.bee-product-card__price del {
color: #7D746D;
font-weight: 400;
margin-right: 4px;
}
.bee-product-card__price ins {
text-decoration: none;
color: #2B211C;
} .bee-product-card__btn {
display: none;
}
.bee-product-card__btn-hidden {
display: flex;
align-items: center;
justify-content: center;
gap: 7px;
width: 100%;
padding: 11px 14px;
background: #F7F4F1;
border: none;
border-top: 1px solid #E8E0D8;
font-family: 'Montserrat', sans-serif;
font-size: 11px;
font-weight: 500;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #2B211C;
cursor: pointer;
transition: background 0.2s ease, color 0.2s ease;
flex-shrink: 0;
}
.bee-product-card:hover .bee-product-card__btn,
.bee-product-card__btn:hover {
background: #2B211C;
color: #fff;
} .bee-recently-viewed {
background: #F7F4F1;
} @media (max-width: 900px) {
.bee-featured { padding: 36px 0 44px; }
.bee-product-card { flex: 0 0 180px; }
}
@media (max-width: 600px) {
.bee-featured { padding: 28px 0 36px; }
.bee-featured__title { margin-bottom: 20px; }
.bee-product-card { flex: 0 0 160px; }
}.bee-section-title {
font-family: 'Cormorant Garamond', Georgia, serif;
font-size: clamp(24px, 3vw, 36px);
font-weight: 600;
color: #2B211C;
letter-spacing: 0.03em;
margin: 0 0 32px;
text-align: center;
} .bee-section-footer {
text-align: center;
margin-top: 32px;
}
.bee-section-more {
display: inline-block;
padding: 12px 36px;
border: 1.5px solid #2B211C;
border-radius: 6px;
font-family: 'Inter', sans-serif;
font-size: 13px;
font-weight: 500;
letter-spacing: 0.06em;
text-transform: uppercase;
color: #2B211C;
text-decoration: none;
transition: background 0.2s, color 0.2s;
}
.bee-section-more:hover {
background: #2B211C;
color: #fff;
} .bee-ticker {
width: 100vw;
position: relative;
left: 50%;
margin-left: -50vw;
background: #2B211C;
overflow: hidden;
padding: 14px 0;
white-space: nowrap;
}
.bee-ticker__track {
display: inline-flex;
animation: bee-ticker 22s linear infinite;
}
.bee-ticker:hover .bee-ticker__track {
animation-play-state: paused;
}
.bee-ticker__item {
font-family: 'Montserrat', sans-serif;
font-size: 11px;
font-weight: 500;
letter-spacing: 0.18em;
text-transform: uppercase;
color: rgba(255,255,255,0.85);
padding: 0 8px;
}
.bee-ticker__sep {
color: rgba(255,255,255,0.35);
margin-left: 16px;
font-size: 9px;
}
@keyframes bee-ticker {
0%   { transform: translateX(0); }
100% { transform: translateX(-50%); }
} .bee-sale {
width: 100vw;
position: relative;
left: 50%;
margin-left: -50vw;
padding: 48px 0 56px;
background: #F7F4F1;
}
.bee-sale__inner {
width: 100%;
padding: 0 clamp(16px, 3vw, 56px);
} .bee-b2b {
width: 100vw;
position: relative;
left: 50%;
margin-left: -50vw;
padding: 64px 0 72px;
background: #2B211C;
}
.bee-b2b__inner {
max-width: 680px;
margin: 0 auto;
padding: 0 clamp(16px, 3vw, 56px);
text-align: center;
}
.bee-b2b__eyebrow {
font-family: 'Montserrat', sans-serif;
font-size: 10px;
font-weight: 600;
letter-spacing: 0.2em;
text-transform: uppercase;
color: #D8C2A6;
margin: 0 0 16px;
}
.bee-b2b__title {
font-family: 'Cormorant Garamond', Georgia, serif;
font-size: clamp(26px, 3.5vw, 42px);
font-weight: 600;
color: #fff;
letter-spacing: 0.02em;
line-height: 1.2;
margin: 0 0 20px;
}
.bee-b2b__subtitle {
font-family: 'Montserrat', sans-serif;
font-size: 13px;
font-weight: 400;
color: rgba(255,255,255,0.65);
line-height: 1.7;
margin: 0 0 36px;
}
.bee-b2b__theses {
list-style: none;
padding: 0;
margin: 0 0 40px;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 12px 32px;
}
.bee-b2b__thesis {
font-family: 'Montserrat', sans-serif;
font-size: 12px;
font-weight: 500;
letter-spacing: 0.05em;
color: rgba(255,255,255,0.85);
display: flex;
align-items: center;
gap: 8px;
}
.bee-b2b__thesis-icon {
color: #D8C2A6;
font-size: 9px;
}
.bee-b2b__btn {
display: inline-block;
padding: 14px 40px;
background: #D8C2A6;
color: #2B211C;
font-family: 'Montserrat', sans-serif;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
text-decoration: none;
border-radius: 4px;
transition: background 0.2s, transform 0.15s;
}
.bee-b2b__btn:hover {
background: #c9af93;
transform: translateY(-1px);
}
@media (max-width: 600px) {
.bee-b2b { padding: 48px 0 56px; }
.bee-b2b__theses { flex-direction: column; align-items: center; gap: 10px; }
} .bee-homepage .woocommerce-products-header,
.bee-homepage .page-title,
.bee-homepage h1.entry-title {
display: none !important;
}html, body {
height: 100%;
}
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
#page {
display: flex;
flex-direction: column;
min-height: 100vh;
}
#content,
.site-content {
flex: 1 0 auto;
}
.site-footer {
flex-shrink: 0;
}
.site-footer {
background: #F7F3EF !important;
padding: 0 !important;
}
.bee-footer {
background: #F7F3EF;
color: #2B211C;
font-family: 'Inter', sans-serif;
width: 100vw;
position: relative;
left: 50%;
margin-left: -50vw;
border-top: 3px solid #CDB79E;
}
.bee-footer__inner {
display: grid;
grid-template-columns: 1.5fr 1fr 1.3fr;
gap: 40px;
width: 100%;
box-sizing: border-box;
padding: 36px clamp(16px, 4vw, 60px) 32px;
} .bee-footer__logo {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
margin-bottom: 12px;
}
.bee-footer__logo img,
.bee-footer__logo .custom-logo {
width: 32px;
height: 32px;
border-radius: 4px;
object-fit: contain;
}
.bee-footer__logo-name {
font-family: 'Cormorant Garamond', Georgia, serif;
font-size: 15px;
font-weight: 600;
color: #2B211C;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.bee-footer__about {
font-size: 12px;
line-height: 1.7;
color: #6B5F58;
margin: 0;
max-width: 280px;
} .bee-footer__heading {
font-family: 'Inter', sans-serif;
font-size: 10px;
font-weight: 600;
letter-spacing: 0.16em;
text-transform: uppercase;
color: #CDB79E;
margin: 0 0 14px;
} .bee-footer__menu {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 8px;
}
.bee-footer__menu li a {
font-size: 13px;
color: #2B211C;
text-decoration: none;
transition: color 0.2s;
}
.bee-footer__menu li a:hover { color: #CDB79E; } .bee-footer__contacts {
list-style: none;
margin: 0 0 16px;
padding: 0;
display: flex;
flex-direction: column;
gap: 9px;
}
.bee-footer__contacts li {
display: flex;
align-items: flex-start;
gap: 9px;
font-size: 13px;
color: #2B211C;
line-height: 1.4;
}
.bee-footer__contacts li svg {
flex-shrink: 0;
margin-top: 1px;
color: #CDB79E;
}
.bee-footer__contacts a {
color: #2B211C;
text-decoration: none;
transition: color 0.2s;
}
.bee-footer__contacts a:hover { color: #CDB79E; } .bee-footer__messengers {
display: flex;
gap: 8px;
margin-bottom: 16px;
}
.bee-footer__msg {
width: 32px;
height: 32px;
border-radius: 7px;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
transition: opacity 0.2s;
}
.bee-footer__msg:hover { opacity: 0.8; }
.bee-footer__msg--viber    { background: transparent; }
.bee-footer__msg--telegram { background: transparent; } .bee-footer__payments {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
.bee-footer__pay-label {
font-size: 10px;
color: #6B5F58;
letter-spacing: 0.06em;
text-transform: uppercase;
}
.bee-footer__pay-img {
height: 20px;
width: auto;
object-fit: contain;
border-radius: 3px;
opacity: 0.75;
transition: opacity 0.2s;
}
.bee-footer__pay-img:hover { opacity: 1; } .bee-footer__bottom {
border-top: 1px solid #E8E0D8;
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px clamp(16px, 4vw, 60px);
background: #EDE8E1;
}
.bee-footer__bottom p {
font-size: 11px;
color: #6B5F58;
margin: 0;
letter-spacing: 0.03em;
}
.bee-footer__dev {
font-size: 10px !important;
color: #6B5F58 !important;
}
.bee-footer__dev a {
color: #A89880;
text-decoration: none;
transition: color 0.2s;
}
.bee-footer__dev a:hover { color: #2B211C; } @media (max-width: 900px) {
.bee-footer__inner {
grid-template-columns: 1fr 1fr;
gap: 28px;
}
.bee-footer__col:first-child {
grid-column: 1 / -1;
}
.bee-footer__about {
max-width: 100%;
}
}
@media (max-width: 560px) {
.bee-footer__inner {
grid-template-columns: 1fr;
gap: 24px;
padding: 28px 20px 24px;
}
.bee-footer__bottom {
flex-direction: column;
gap: 4px;
text-align: center;
padding: 12px 20px;
}
}.woocommerce-message,
.woocommerce-info {
border-top-color: #CDB79E !important;
background: #F7F4F1 !important;
color: #2B211C !important;
padding-right: 3em !important;
}
.woocommerce-message::before,
.woocommerce-info::before {
color: #CDB79E !important;
}
.woocommerce-message .button,
.woocommerce-info .button {
background: #2B211C !important;
color: #fff !important;
margin-right: 1.5em !important;
}
.woocommerce-message .button:hover,
.woocommerce-info .button:hover {
background: #CDB79E !important;
} @media (max-width: 1024px) and (min-width: 769px) {
.woocommerce-message,
.woocommerce-info {
font-size: 0.875em !important;
padding-right: 2em !important;
}
.woocommerce-message .button,
.woocommerce-info .button {
margin-right: 0.5em !important;
}
} @media (max-width: 768px) {
.woocommerce-message,
.woocommerce-info {
font-size: 0.75em !important;
padding: 0.6em 1em 0.6em 2.8em !important;
}
.woocommerce-message .button,
.woocommerce-info .button {
font-size: 0.82em !important;
padding: 0.4em 0.7em !important;
margin-right: 0 !important;
margin-left: 0.5em !important;
}
} .related.products ul.products,
.upsells.products ul.products {
display: grid !important;
grid-template-columns: repeat(5, 1fr) !important;
gap: 16px;
}
.related.products ul.products::before,
.related.products ul.products::after,
.upsells.products ul.products::before,
.upsells.products ul.products::after {
display: none !important;
}
.related.products ul.products li.product,
.upsells.products ul.products li.product {
display: flex !important;
flex-direction: column;
width: 100% !important;
margin: 0 !important;
}
.related.products ul.products li.product a img,
.upsells.products ul.products li.product a img {
width: 100%;
aspect-ratio: 1 / 1;
object-fit: cover;
display: block;
}
.related.products ul.products li.product .woocommerce-loop-product__title,
.upsells.products ul.products li.product .woocommerce-loop-product__title {
flex: 1;
} .bee-variations {
display: flex;
flex-direction: column;
gap: 12px;
margin-top: 8px;
}
.bee-var-card {
display: grid;
grid-template-columns: 80px 1fr auto;
align-items: center;
gap: 16px;
padding: 12px 16px;
border: 1px solid #E8E0D8;
border-radius: 8px;
background: #fff;
}
.bee-var-card--out {
opacity: 0.55;
} .bee-var-card__img-wrap {
width: 80px;
height: 80px;
border-radius: 6px;
overflow: hidden;
background: #F5F1ED;
flex-shrink: 0;
}
.bee-var-card__img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
} .bee-var-card__body {
display: flex;
flex-direction: column;
gap: 6px;
min-width: 0;
}
.bee-var-card__name {
font-family: 'Montserrat', sans-serif;
font-size: 13px;
font-weight: 500;
color: #2B211C;
letter-spacing: 0.03em;
}
.bee-var-card__price {
font-family: 'Montserrat', sans-serif;
font-size: 15px;
font-weight: 600;
color: #2B211C;
}
.bee-var-card__price del {
color: #A89880;
font-weight: 400;
font-size: 12px;
margin-right: 4px;
}
.bee-var-card__price ins {
text-decoration: none;
} .bee-var-card__stock {
font-family: 'Inter', sans-serif;
font-size: 11px;
color: #5a9e6f;
margin-top: 2px;
}
.bee-var-card__stock--low {
color: #b07840;
} .bee-var-card__form { margin: 0; }
.bee-var-card__qty-row {
display: flex;
align-items: center;
gap: 8px;
} .bee-var-qty {
display: flex;
align-items: center;
border: 1px solid #E8E0D8;
border-radius: 6px;
overflow: hidden;
height: 38px;
}
.bee-var-qty__btn {
width: 32px;
height: 38px;
background: #F7F4F1;
border: none;
font-size: 16px;
color: #2B211C;
cursor: pointer;
line-height: 1;
transition: background 0.15s;
flex-shrink: 0;
}
.bee-var-qty__btn:hover { background: #E8E0D8; }
.bee-var-qty__input {
width: 38px;
height: 38px;
border: none;
border-left: 1px solid #E8E0D8;
border-right: 1px solid #E8E0D8;
text-align: center;
font-family: 'Montserrat', sans-serif;
font-size: 13px;
font-weight: 500;
color: #2B211C;
background: #fff;
-moz-appearance: textfield;
}
.bee-var-qty__input::-webkit-inner-spin-button,
.bee-var-qty__input::-webkit-outer-spin-button { -webkit-appearance: none; } .bee-var-card__btn {
width: 42px;
height: 42px;
border-radius: 8px;
background: #2B211C;
border: none;
color: #fff;
fill: none;
stroke: #fff;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
flex-shrink: 0;
transition: background 0.2s;
}
.bee-var-card__btn svg {
stroke: #fff;
flex-shrink: 0;
}
.bee-var-card__btn:hover { background: #CDB79E; }
.bee-var-card__out {
font-family: 'Montserrat', sans-serif;
font-size: 11px;
color: #A89880;
letter-spacing: 0.06em;
text-transform: uppercase;
white-space: nowrap;
} @media (max-width: 768px) {
.related.products ul.products,
.upsells.products ul.products {
display: grid !important;
grid-template-columns: 1fr 1fr !important;
gap: 10px;
}
.related.products ul.products::before,
.related.products ul.products::after,
.upsells.products ul.products::before,
.upsells.products ul.products::after {
display: none !important;
}
.related.products ul.products li.product,
.upsells.products ul.products li.product {
width: 100% !important;
margin: 0 !important;
}
}
@media (max-width: 560px) {
.bee-var-card {
grid-template-columns: 52px 1fr auto;
gap: 10px;
padding: 10px 12px;
align-items: center;
}
.bee-var-card__img-wrap {
width: 52px;
height: 52px;
}
.bee-var-card__body {
gap: 2px;
}
.bee-var-card__name {
font-size: 11px;
-webkit-line-clamp: 1;
}
.bee-var-card__price {
font-size: 13px;
}
.bee-var-card__qty-row {
gap: 6px;
}
.bee-var-qty {
height: 32px;
}
.bee-var-qty__btn {
width: 26px;
height: 32px;
font-size: 14px;
}
.bee-var-qty__input {
width: 28px;
height: 32px;
font-size: 12px;
}
.bee-var-card__btn {
width: 34px;
height: 34px;
border-radius: 6px;
}
.bee-var-card__btn svg {
width: 13px;
height: 13px;
}
}.bee-product-card {
transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.bee-product-card:hover {
transform: translateY(-5px);
box-shadow: 0 14px 40px rgba(43, 33, 28, 0.13);
border-color: #CDB79E;
} .bee-product-card__img {
transition: transform 0.42s ease;
}
.bee-product-card:hover .bee-product-card__img {
transform: scale(1.07);
} .bee-product-card__btn {
transition: background 0.22s ease, color 0.22s ease;
}  ul.products li.product a:first-child {
display: block;
overflow: hidden;
line-height: 0;
}
ul.products li.product {
transition: box-shadow 0.28s ease;
}
ul.products li.product:hover {
box-shadow: 0 14px 40px rgba(43, 33, 28, 0.13);
} ul.products li.product img {
transition: transform 0.42s ease;
display: block;
width: 100%;
}
ul.products li.product:hover img {
transform: scale(1.07);
} .bee-var-card {
transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.bee-var-card:hover {
transform: translateY(-2px);
box-shadow: 0 8px 28px rgba(43, 33, 28, 0.10);
border-color: #CDB79E;
} .bee-b2b__btn {
transition: background 0.25s ease, border-color 0.25s ease;
}
.bee-slider__arrow {
transition: background 0.2s ease;
}
.bee-slider__dot {
transition: background 0.2s ease, transform 0.2s ease;
} .bee-clicked {
transform: scale(0.93) !important;
transition: transform 0.1s ease !important;
} .bee-reveal {
opacity: 0;
transform: translateY(32px);
transition: opacity 0.65s ease, transform 0.65s ease;
}
.bee-reveal.bee-visible {
opacity: 1;
transform: translateY(0);
} .bee-reveal-card {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.5s ease, transform 0.5s ease;
}
.bee-reveal-card.bee-visible {
opacity: 1;
transform: translateY(0);
}
@keyframes bee-fadein {
from { opacity: 0; transform: translateY(18px); }
to   { opacity: 1; transform: translateY(0); }
} .woocommerce-product-gallery__wrapper {
overflow: hidden;
border-radius: 6px;
}
.woocommerce-product-gallery__image {
overflow: hidden;
}
.woocommerce-product-gallery__image img {
transition: transform 0.5s ease !important;
display: block;
width: 100%;
}
.woocommerce-product-gallery__image:hover img {
transform: scale(1.08) !important;
cursor: zoom-in;
} .bee-header__bar {
transition: box-shadow 0.3s ease, background 0.3s ease;
}
.bee-nav > ul > li > a,
.bee-account-btn,
.bee-icon-btn,
.bee-phone {
transition: color 0.2s ease, opacity 0.2s ease;
} .bee-footer__menu li a,
.bee-footer__contacts a,
.bee-footer__msg,
.bee-footer__dev a {
transition: color 0.2s ease, opacity 0.2s ease;
} a { transition: color 0.2s ease; } .woocommerce-badge,
.onsale {
display: none !important;
} .wc-block-components-sale-badge,
.wc-block-components-product-badge {
display: none !important;
} .wc-block-components-product-metadata__description {
display: none !important;
} @media (max-width: 768px) {
.wc-block-cart-item__total {
display: flex !important;
flex-direction: column !important;
justify-content: flex-end !important;
height: 100% !important;
}
.wc-block-cart-item__total-price-and-sale-badge-wrapper {
margin-top: auto !important;
}
} @media (max-width: 768px) {
.woocommerce-checkout-review-order-table tfoot {
display: flex !important;
flex-direction: column !important;
}
.woocommerce-checkout-review-order-table tfoot tr {
display: flex !important;
justify-content: space-between !important;
padding: 6px 0 !important;
}
.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal {
display: none !important;
}
.woocommerce-checkout-review-order-table tfoot tr.order-total {
order: 2 !important;
}
.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals {
order: 3 !important;
}
} @media (max-width: 768px) {
.woocommerce-checkout .woocommerce-Price-amount.amount {
float: right;
}
.woocommerce-checkout-review-order-table tr.order-total td {
text-align: right;
}
} .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals {
display: none !important;
} .bee-shipping-method-box {
background: #FDFBF9;
border: 1px solid #F0EAE4;
border-radius: 8px;
padding: 16px 20px;
margin-bottom: 20px;
}
.bee-shipping-method-box .woocommerce-shipping-methods {
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 20px;
flex-wrap: wrap;
}
.bee-shipping-method-box .woocommerce-shipping-methods li {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
color: #2B211C;
}
.bee-shipping-method-box label {
cursor: pointer;
font-weight: 500;
} .woocommerce-checkout .col2-set {
display: block !important;
float: none !important;
width: 100% !important;
}
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
float: none !important;
width: 100% !important;
margin-right: 0 !important;
} .woocommerce-checkout .col2-set .col-2 {
margin-top: 24px;
} a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
.bee-product-card:focus {
outline: 2px solid #CDB79E !important;
outline-offset: 2px;
} a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
.bee-product-card:focus:not(:focus-visible) {
outline: none !important;
} @media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}.bee-catalog-main ul.products li.product,
ul.products li.product {
display: flex !important;
flex-direction: column !important;
}
.bee-catalog-main ul.products li.product a.woocommerce-loop-product__link,
ul.products li.product a.woocommerce-loop-product__link {
display: flex;
flex-direction: column;
flex: 1;
text-decoration: none;
} .bee-catalog-main ul.products li.product,
ul.products li.product {
background: #fff;
border: none;
border-radius: 0;
overflow: hidden;
box-shadow: 0 2px 8px rgba(43, 33, 28, 0.08);
transition: box-shadow 0.25s;
}
.bee-catalog-main ul.products li.product:hover,
ul.products li.product:hover {
box-shadow: 0 6px 24px rgba(43, 33, 28, 0.16);
} .bee-catalog-main ul.products li.product img,
ul.products li.product img {
width: 100%;
aspect-ratio: 1 / 1;
object-fit: contain;
display: block;
background: #fff;
} .bee-catalog-main ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-product__title {
font-family: 'Inter', sans-serif;
font-size: 13px;
font-weight: 400;
color: #2B211C;
line-height: 1.4;
padding: 8px 10px 0;
box-sizing: border-box;
flex: none;
margin: 0;
text-align: left;
overflow: hidden !important;
max-height: 45px;
display: -webkit-box !important;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical !important;
} .bee-catalog-main ul.products li.product .price,
ul.products li.product .price {
display: flex;
flex-direction: row;
align-items: baseline;
flex-wrap: wrap;
padding: 20px 10px 14px;
font-family: 'Inter', sans-serif;
gap: 6px;
margin-top: auto;
}
.bee-catalog-main ul.products li.product .price del,
ul.products li.product .price del {
font-size: 11px;
font-weight: 400;
color: #A89880;
text-decoration: line-through;
order: 2;
}
.bee-catalog-main ul.products li.product .price ins,
ul.products li.product .price ins {
text-decoration: none;
color: #C0392B;
font-size: 15px;
font-weight: 600;
order: 1;
} .bee-catalog-main ul.products li.product .price > .amount,
ul.products li.product .price > .amount {
color: #2B211C;
font-size: 15px;
font-weight: 600;
}
@media (min-width: 769px) {
.bee-catalog-main ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-product__title {
font-size: 15px;
max-height: 50px;
}
} .bee-loop-stock {
display: block;
font-family: 'Inter', sans-serif;
font-size: 11px;
font-weight: 500;
padding: 12px 10px 0;
letter-spacing: 0.02em;
}
.bee-loop-stock--in {
color: #5a9e6f;
}
.bee-loop-stock--out {
color: #b05050;
} .bee-catalog-main ul.products li.product .button,
ul.products li.product .button {
display: none;
}.woocommerce-tabs ul.tabs {
padding: 0;
border-bottom: 2px solid #E8E0D8;
}
.woocommerce-tabs ul.tabs li {
background: transparent;
border: none;
border-bottom: 2px solid transparent;
margin-bottom: -2px;
border-radius: 0;
}
.woocommerce-tabs ul.tabs li a {
font-family: 'Inter', sans-serif;
font-size: 14px;
font-weight: 500;
color: #A89880;
letter-spacing: 0.04em;
text-transform: uppercase;
padding: 10px 20px;
}
.woocommerce-tabs ul.tabs li.active {
border-bottom: 2px solid #CDB79E;
background: transparent;
}
.woocommerce-tabs ul.tabs li.active a {
color: #2B211C;
}
.woocommerce-tabs ul.tabs li a:hover {
color: #2B211C;
} .woocommerce-tabs .panel {
padding: 24px 0 0;
} .woocommerce-product-attributes {
width: 100%;
border-collapse: collapse;
font-family: 'Inter', sans-serif;
font-size: 14px;
}
.woocommerce-product-attributes tr {
border-bottom: 1px solid #F0EAE4;
}
.woocommerce-product-attributes tr:last-child {
border-bottom: none;
}
.woocommerce-product-attributes th {
width: 40%;
padding: 12px 16px;
font-weight: 500;
color: #A89880;
text-align: left;
vertical-align: top;
background: transparent;
}
.woocommerce-product-attributes td {
padding: 12px 16px 12px 0;
color: #2B211C;
font-weight: 400;
text-align: right;
background: transparent;
}
.woocommerce-product-attributes td p {
margin: 0;
}
.woocommerce-product-attributes tr:first-child th,
.woocommerce-product-attributes tr:first-child td {
padding-top: 16px;
} .woocommerce div.product .stock {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 13px;
font-weight: 500;
} .woocommerce div.product .stock.in-stock {
color: #5a9e6f;
}
.woocommerce div.product .stock.in-stock::before {
content: '✓';
font-size: 15px;
font-weight: 700;
color: #5a9e6f;
line-height: 1;
} .woocommerce div.product .stock.out-of-stock {
color: #b05050;
}  .woocommerce .star-rating span,
.woocommerce .star-rating::before,
.woocommerce p.stars a,
.woocommerce p.stars a:hover,
.woocommerce p.stars a::before {
color: #CDB79E;
}
.woocommerce p.stars a.active::before,
.woocommerce p.stars a:hover ~ a::before,
.woocommerce p.stars.selected a.active ~ a::before {
color: #E8E0D8;
} .woocommerce #reviews #reply-title,
.woocommerce #reviews .comment-reply-title {
font-family: 'Inter', sans-serif;
font-size: 18px;
font-weight: 600;
color: #2B211C;
}
.woocommerce #review_form #respond input[type="text"],
.woocommerce #review_form #respond input[type="email"],
.woocommerce #review_form #respond textarea {
font-family: 'Inter', sans-serif;
font-size: 14px;
color: #2B211C;
border: 1px solid #E8E0D8;
border-radius: 6px;
padding: 10px 14px;
background: #fff;
box-shadow: none;
transition: border-color 0.2s;
}
.woocommerce #review_form #respond input[type="text"]:focus,
.woocommerce #review_form #respond input[type="email"]:focus,
.woocommerce #review_form #respond textarea:focus {
border-color: #CDB79E;
outline: none;
}
.woocommerce #review_form #respond input[type="submit"] {
font-family: 'Inter', sans-serif;
font-size: 14px;
font-weight: 500;
background: #2B211C;
color: #fff;
border: none;
border-radius: 6px;
padding: 11px 28px;
cursor: pointer;
transition: background 0.2s;
}
.woocommerce #review_form #respond input[type="submit"]:hover {
background: #CDB79E;
} .woocommerce #reviews .commentlist li .comment-text {
border: 1px solid #F0EAE4;
border-radius: 8px;
padding: 16px 20px;
background: #fff;
}
.woocommerce #reviews .commentlist li .meta strong {
font-family: 'Inter', sans-serif;
font-weight: 600;
color: #2B211C;
}
.woocommerce #reviews .commentlist li .meta time {
font-family: 'Inter', sans-serif;
font-size: 12px;
color: #A89880;
}
.woocommerce #reviews .commentlist li .description p {
font-family: 'Inter', sans-serif;
font-size: 14px;
color: #2B211C;
line-height: 1.6;
} .woocommerce #reviews .commentlist li .woocommerce-review__verified {
color: #5a9e6f;
font-size: 12px;
} .woocommerce #reviews .commentlist li img.avatar {
border-radius: 50%;
border: 2px solid #E8E0D8;
} @media (max-width: 768px) {
h1.product_title.entry-title {
font-size: 1.3rem;
}
}