/* ===========================
   COMPONENTS STYLES
   =========================== */

/* ==================== Collections Section ==================== */
.collections {
    padding: 40px 0;
    background-color: #F4F0EB;
}

.collections-row {
    margin-bottom: 80px;
}

.collections-row:last-child {
    margin-bottom: 0;
}

.collections-main-image {
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.collections-hero-img {
    width: 100%;
    height: 469px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collections-main-image:hover .collections-hero-img {
    transform: scale(1.05);
}

.collections-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collections-main-image:hover .collections-image-overlay {
    opacity: 1;
}

.collections-image-content {
    text-align: center;
    color: white;
}

.collections-image-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-family: 'Jost', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.collections-image-btn {
    background: var(--main-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 149, 228, 0.3);
    text-decoration: none;
    display: inline-block;
}

.collections-image-btn:hover {
    background: var(--main-light-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 149, 228, 0.4);
    color: white;
    text-decoration: none;
}

.collections-slider-section {
    background: transparent;
    padding: 0;
    margin-bottom: 50px;
    overflow: hidden;
}

.collections-slider-title {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--black-color);
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.collections-slider-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--main-color);
}

/* Collections Carousel */
.collections-horizontal-carousel {
    position: relative;
    margin-top: 20px;
    overflow: hidden;
    width: 100%;
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.collections-smooth-track {
    display: flex;
    width: calc(296px * 16);
    animation: infiniteScroll 60s linear infinite;
    will-change: transform;
}

.collections-horizontal-carousel:hover .collections-smooth-track,
.collections-square-card:hover ~ .collections-smooth-track,
.collections-square-card:hover .collections-smooth-track {
    animation-play-state: paused;
}

@keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-296px * 8)); }
}

.collections-square-card {
    flex: 0 0 280px;
    height: 492px;
    background: white;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 0 4px;
    cursor: pointer;
    position: relative;
}

.collections-square-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.collections-square-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1;
}

.collections-square-card:hover .collections-square-image {
    transform: scale(1.05);
}

.collections-square-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(66, 149, 228, 0);
    transition: all 0.4s ease;
    border-radius: 8px;
    z-index: 0;
    pointer-events: none;
}

.collections-square-card:hover::before {
    background: rgba(66, 149, 228, 0.1);
}

.collections-square-card::after {
    content: '\f065';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--main-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    pointer-events: none;
}

.collections-square-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Collections Modal */
.collections-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.collections-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.collections-modal-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
    z-index: 1000000;
}

.collections-modal-overlay.active .collections-modal-container {
    transform: scale(1) translateY(0);
}

.collections-modal-image {
    max-width: 600px;
    max-height: 800px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f0f0f0;
    position: relative;
    max-height: 85vh;
}

.collections-modal-image:hover {
    transform: scale(1.02);
}

.collections-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--black-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000001;
}

.collections-modal-close:hover {
    background: var(--red-color);
    color: white;
    transform: scale(1.1) rotate(90deg);
}

.collections-modal-info {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0;
    border-radius: 12px;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.collections-modal-overlay.active .collections-modal-info {
    transform: translateY(0);
    opacity: 1;
}

.collections-modal-title {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
    margin-top: 8px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.collections-modal-description {
    font-size: 11px;
    color: var(--grey-color);
    margin-bottom: 8px;
    line-height: 1.5;
}

body.modal-open {
    overflow: hidden !important;
    padding-right: 15px;
}

/* ==================== Mobile Menu ==================== */
.offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    max-width: 300px;
    width: 80%;
    background-color: #2C2C2C;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out, visibility 0.3s;
    z-index: 999;
    display: none;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.offcanvas.show {
    visibility: visible;
    transform: translateX(0);
    display: flex;
    flex-direction: column;
}

.offcanvas-header {
    margin-top: 100px;
    border-bottom: 1px solid #eee;
    background-color: #2C2C2C;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.offcanvas-header .offcanvas-header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.offcanvas-header .header-icon {
    color: #FFFFFF;
    font-size: 18px;
    text-decoration: none;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.offcanvas-header .header-icon img {
    width: 22px;
    height: 22px;
    display: block;
    filter: brightness(0) invert(1);
}

.offcanvas-header .btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #F4F0EB;
    opacity: 0.7;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offcanvas-header .btn-close:hover {
    opacity: 1;
    color: #D85AFF;
}

.offcanvas-header .navbar-brand {
    position: relative;
    transform: none;
    margin: 0;
}

.offcanvas-header .navbar-brand img {
    max-height: 35px;
    width: auto;
}

.offcanvas-body {
    padding: 0;
    margin-bottom: 30px;
    background-color: #2C2C2C;
}

/* Mobile Navigation */
.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 5px;
    background-color: #fff;
    position: relative;
}

.mobile-nav-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.mobile-nav-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 20px;
    color: #F4F0EB !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background-color: #2c2c2c;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 5;
}

.mobile-nav-item a:hover {
    background-color: #f8f8f8;
    color: #D85AFF !important;
    padding-left: 30px;
}

.mobile-nav-item a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(135deg, #D85AFF, #a855f7);
    transition: width 0.3s ease;
}

.mobile-nav-item a:hover::before {
    width: 4px;
}

.mobile-nav-item .menu-item-icon,
.mobile-nav-item .menu-item-text {
    display: inline-block;
    vertical-align: middle;
}

.mobile-nav-item .menu-item-icon {
    margin-right: 10px;
}

.mobile-nav-item .menu-item-icon img {
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.mobile-nav-item:hover .menu-item-icon img {
    filter: brightness(0) saturate(100%) invert(66%) sepia(73%) saturate(6158%) hue-rotate(260deg) brightness(101%) contrast(101%);
}

/* Mobile Menu Animations */
.mobile-nav-item:hover .menu-item-icon img[alt*="Witch"],
.mobile-nav-item:hover .menu-item-icon img[alt*="Star"] {
    animation: rotateStar 0.6s ease-in-out;
}

.mobile-nav-item:hover .menu-item-icon img[alt*="Tender"],
.mobile-nav-item:hover .menu-item-icon img[alt*="Heart"] {
    animation: heartbeat 1s ease-in-out infinite;
}

.mobile-nav-item:hover .menu-item-icon img[alt*="Data"],
.mobile-nav-item:hover .menu-item-icon img[alt*="Internet"] {
    animation: rotatePlanet 3s linear infinite;
}

.mobile-nav-item:hover .menu-item-icon img[alt*="Identity"],
.mobile-nav-item:hover .menu-item-icon img[alt*="Punch"] {
    animation: punchPulse 0.6s ease-in-out infinite;
}

/* Submenu styles */
.mobile-nav-item.has-submenu > a {
    width: calc(100% - 50px);
}

.submenu-toggle, 
.child-toggle {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    width: 50px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #454f5b;
    font-size: 14px;
    z-index: 6;
}

.submenu-toggle:focus,
.child-toggle:focus {
    outline: none;
}

.submenu-toggle[aria-expanded="true"] i,
.child-toggle[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.submenu, 
.child-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f9f9f9;
}

.submenu.active, 
.child-menu.active {
    display: block;
}

.submenu-item {
    position: relative;
    border-top: 1px solid #eee;
}

.submenu-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 12px 35px;
    font-size: 15px;
    font-weight: 400;
}

.child-item a {
    padding: 12px 20px 12px 50px;
    font-size: 14px;
}

.submenu-item.has-children > a {
    width: calc(100% - 50px);
}

.offcanvas-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050 !important;
}

.offcanvas .mobile-nav-menu a,
.offcanvas .mobile-nav-menu a:link,
.offcanvas .mobile-nav-menu a:visited,
.offcanvas .mobile-nav-menu a:hover,
.offcanvas .mobile-nav-menu a:active {
    color: #F4F0EB !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.offcanvas .mobile-nav-menu a:hover {
    color: #D85AFF !important;
}

/* ==================== Shop Dropdown Menu ==================== */
.main-dark-bar .nav-item.dropdown {
    position: relative;
}

.main-dark-bar .navbar-nav {
    position: relative;
    z-index: 1;
}

.main-dark-bar .nav-link.dropdown-toggle {
    position: relative;
    cursor: pointer;
}

.main-dark-bar .dropdown-toggle::after {
    display: none;
}

.main-dark-bar .dropdown-toggle::before {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.main-dark-bar .dropdown-toggle[aria-expanded="true"]::before {
    transform: rotate(180deg);
}

.custom-dropdown {
    position: relative;
}

.custom-dropdown .nav-link::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 8px;
    vertical-align: middle;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s ease;
}

.custom-dropdown:hover .nav-link::after {
    transform: rotate(180deg);
}

.shop-dropdown {
    position: absolute;
    top: 30px;
    left: -100px;
    z-index: 99999;
    background: #F4F0EB;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    min-width: 250px;
    list-style: none;
    margin: 0;
    display: none;
}

@media (min-width: 992px) {
    .custom-dropdown:hover .shop-dropdown {
        display: block;
    }
}

.shop-dropdown.show {
    display: block;
}

.dropdown-item-wrapper {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
}

.shop-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    position: relative;
    width: 100%;
}

.shop-dropdown .dropdown-item:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #D85AFF;
}

.dropdown-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.dropdown-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.dropdown-item:hover .dropdown-icon img {
    filter: brightness(0) saturate(100%) invert(66%) sepia(73%) saturate(6158%) hue-rotate(260deg) brightness(101%) contrast(101%);
}

/* Dropdown Icon Animations on Hover */
.dropdown-item:hover .dropdown-icon img[alt*="Witch"],
.dropdown-item:hover .dropdown-icon img[alt*="Star"],
.shop-dropdown .dropdown-item:hover .dropdown-icon img[alt*="Witch"],
.shop-dropdown .dropdown-item:hover .dropdown-icon img[alt*="Star"] {
    animation: rotateStar 0.6s ease-in-out;
}

.dropdown-item:hover .dropdown-icon img[alt*="Tender"],
.dropdown-item:hover .dropdown-icon img[alt*="Heart"],
.shop-dropdown .dropdown-item:hover .dropdown-icon img[alt*="Tender"],
.shop-dropdown .dropdown-item:hover .dropdown-icon img[alt*="Heart"] {
    animation: heartbeat 1s ease-in-out infinite;
}

.dropdown-item:hover .dropdown-icon img[alt*="Data"],
.dropdown-item:hover .dropdown-icon img[alt*="Internet"],
.dropdown-item:hover .dropdown-icon img[alt*="muse"],
.shop-dropdown .dropdown-item:hover .dropdown-icon img[alt*="Data"],
.shop-dropdown .dropdown-item:hover .dropdown-icon img[alt*="muse"] {
    animation: rotatePlanet 3s linear infinite;
}

.dropdown-item:hover .dropdown-icon img[alt*="Identity"],
.dropdown-item:hover .dropdown-icon img[alt*="Punch"],
.dropdown-item:hover .dropdown-icon img[alt*="action"],
.shop-dropdown .dropdown-item:hover .dropdown-icon img[alt*="Identity"],
.shop-dropdown .dropdown-item:hover .dropdown-icon img[alt*="action"] {
    animation: punchPulse 0.6s ease-in-out infinite;
}

/* Dropdown Animations */
@keyframes rotateStar {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.1); }
    20% { transform: scale(1); }
    30% { transform: scale(1.15); }
    40% { transform: scale(1); }
}

@keyframes rotatePlanet {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes punchPulse {
    0%, 100% { transform: scale(1) translateX(0); }
    50% { transform: scale(1.1) translateX(3px); }
}

.dropdown-text {
    flex: 1;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.shop-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #F4F0EB;
}

/* ==================== Modern Product Card ==================== */
.modern-product-card {
    background-color: #F5F5F5;
    border-radius: 4px;
    padding: 0;
    margin: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: none;
    width: 240px !important;
    flex: 0 0 240px !important;
    max-width: 240px !important;
}

.modern-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modern-product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background-color: #f0f0f0;
    margin: 19px;
}

.modern-product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.modern-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modern-product-card:hover .modern-product-image img {
    transform: scale(1.05);
}

.modern-product-info {
    background-color: #F5F5F5;
    padding: 0;
    text-align: center;
}

.modern-product-title {
    margin-left: 19px;
    padding: 0;
    line-height: 1.4;
    text-align: left;
}

.modern-product-title a {
    color: #2C2C2C80;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    display: block;
}

.modern-product-title a:hover {
    color: #cccccc;
}

.modern-product-price {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2C2C2C;
    margin-left: 19px;
    margin-bottom: 12px;
    text-align: left;
}

.modern-product-price .price {
    color: #2C2C2C;
    font-size: inherit;
    font-weight: inherit;
}

.modern-product-price .price del {
    color: #888888;
    margin-right: 8px;
    font-weight: 400;
}

.modern-product-price .price ins {
    text-decoration: none;
    color: #ffffff;
}

.modern-product-card .onsale {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #D85AFF;
    color: white;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 30;
    z-index: 2;
    font-family: 'Jost', sans-serif;
}

.modern-product-card .button,
.modern-product-card .add_to_cart_button {
    display: none;
}

.modern-product-card .star-rating,
.modern-product-card .product-excerpt,
.modern-product-card .custom-add-to-cart,
.modern-product-card .woostudy-rating-count {
    display: none !important;
}

/* ==================== Blog Styles ==================== */
.blog-posts-shortcode {
    margin: 20px 0;
}

.blog-post-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.blog-post-item h3 {
    margin: 0 0 10px 0;
}

.blog-post-item h3 a {
    text-decoration: none;
    color: #333;
}

.post-date, .post-author {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.post-excerpt {
    margin: 15px 0;
    line-height: 1.6;
}

.read-more, .read-more-btn {
    display: inline-block;
    background: #0073aa;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
}

.read-more-btn {
    display: none;
}

.blog-posts-grid {
    display: grid;
    gap: 20px;
    padding: 40px;
}

.blog-posts-grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.blog-posts-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.blog-post-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.blog-post-card .post-content h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

.blog-post-card .post-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-card .post-content h3 a:hover {
    color: #AA2DD0;
}

.post-content {
    padding: 15px;
}

.post-thumbnail a img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

/* Blog Trends Section */
.blog-trends-section {
    padding: 40px 0 80px;
}

.blog-trends-section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
}

.blog-trends-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-trends-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 60px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 24px;
    color: #0C0C0C;
}

.blog-trends-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 32%;
    text-align: center;
    color: #2C2C2C;
}

.blog-trends-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.blog-trend-card {
    background-color: #FFFFFF;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-trend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-trend-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.blog-trend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-trend-card:hover .blog-trend-image img {
    transform: scale(1.05);
}

.blog-trend-content {
    padding: 30px;
}

.blog-trend-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #2C2C2C;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-trend-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-trend-title a:hover {
    color: #D85AFF;
}

.blog-trend-meta {
    margin-bottom: 15px;
}

.blog-trend-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #999999;
    font-weight: 300;
}

.blog-trend-excerpt {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-trend-read-more {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #D85AFF;
    text-decoration: none;
    font-weight: 500;
    text-transform: lowercase;
    position: relative;
    transition: all 0.3s ease;
}

.blog-trend-read-more:hover {
    color: #2C2C2C;
}

.blog-trend-read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #2C2C2C;
    transition: width 0.3s ease;
}

.blog-trend-read-more:hover::after {
    width: 100%;
}

.trends-btn-container {
    text-align: center;
    margin-top: 30px;
}

.trends-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #2C2C2C;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 12px 25px;
    transition: all 0.3s ease;
}

.trends-btn-link:hover {
    background-color: white;
    color: #333;
    text-decoration: none;
}

/* ==================== About Brand Section ==================== */
.about-brand {
    position: relative;
    min-height: 670px;
}

.about-brand .container {
    position: relative;
    z-index: 2;
}

.about-content {
    color: white;
    max-width: 500px;
    margin-left: 111px;
}

.about-section-title {
    font-family: 'Playfair Display', sans-serif;
    font-size: 48px;
    color: #F4F0EB;
    font-weight: 400;
    margin-bottom: 80px;
    letter-spacing: 0.5px;
}

.brand-description {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #F4F0EB;
    font-family: 'Playfair Display', sans-serif;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border: 2px solid white;
    padding: 12px 25px;
    transition: all 0.3s ease;
}

.btn-link:hover {
    background-color: white;
    color: #333;
    text-decoration: none;
}

.arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-link:hover .arrow {
    transform: translateX(5px);
}

.features-row {
    justify-content: center;
}

.feature-item {
    padding: 0 20px;
}

.feature-icon {
    margin-bottom: 30px;
    color: #ffffff;
    opacity: 0.9;
}

.feature-icon svg {
    width: 60px;
    height: 60px;
}

.feature-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #ffffff;
}

.feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin: 0;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== Animated Text Section ==================== */
.animated-text-section {
    padding: 50px 0;
}

.animated-text-section .text-block {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animated-text-section .text-block::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background-size: 400% 400%;
    z-index: -1;
    animation: borderPulse 4s ease infinite;
}

@keyframes borderPulse {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.animated-text-section .text-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-content {
    font-size: 24px;
    font-weight: 600;
    color: #2C2C2C;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.animated-text-section .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    margin-right: 0.3em;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animated-text-section .word.animate {
    opacity: 1;
    transform: translateY(0);
}

.animated-text-section .text-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.animated-text-section .text-block.visible:hover {
    transform: translateY(-5px);
}
