:root {
    --primary: #009E4E;
    --accent: #009E4E;
    --hero-blue: #043019;
    --white: #ffffff;
    --text-dark: #111111;
    --muted: #bdbdbd;
    --link-hover-color: #009E4E;
}

@font-face {
    font-family: "Gotham Bold";
    src: url("../fonts/Gotham Bold.otf");
}

@font-face {
    font-family: "Gotham Book";
    src: url("../fonts/Gotham Book.otf");
}

@font-face {
    font-family: "Gotham Medium";
    src: url("../fonts/Gotham Medium.otf");
}

@font-face {
    font-family: "Gotham Thin";
    src: url("../fonts/Gotham Thin.otf");
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Gotham Medium";
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Gotham Bold";
}

a {
    text-decoration: none;
}

.main-header {
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
}

.top-header {
    padding: 0px 1rem;
}

.logo img {
    width: 100%;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent);
    text-decoration: none;
}

.asterisk {
    color: var(--accent);
    font-size: 1.5rem;
    vertical-align: super;
}

.primary-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: start;
    list-style-type: none;
    margin-bottom: 0px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0px;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--primary);
}

.location-info {
    font-size: 0.85rem;
    color: rgb(102, 102, 102);
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}

.location-info .location-info-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-text {
    display: flex;
    flex-direction: column;
    gap: 0px;
    text-align: start;
}

.location-heading {
    font-size: 0.65rem;
    color: var(--hero-blue);
}

.location-name {
    font-size: 12px;
}

.login-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: rgb(229, 148, 0);
    color: var(--white);
}

.center-slider-bar {
    background-color: var(--hero-blue);
    height: 48px;
    position: relative;
    overflow: hidden;
}

.sliding-text-container {
    position: relative;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sliding-text-item {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s, transform 0.5s;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgb(255, 255, 255);
}

.sliding-text-item.active {
    opacity: 1;
    transform: translateX(0px);
}

.slider-bar-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--white);
    transition: opacity 0.3s;
}

.slider-bar-arrow:hover {
    opacity: 0.7;
}

.slider-bar-arrow-right {
    right: 1rem;
}

.bottom-categories {
    padding: 0.75rem 0px;
    border-bottom: 1px solid rgb(224, 224, 224);
    position: sticky;
    top: 0px;
    left: 0px;
    z-index: 999999;
}

.categories-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0px 1rem;
    justify-content: center;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.category-item {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s;
    padding: 0.25rem 0px;
}

.category-item:hover {
    color: var(--primary);
}

.row-top {
    padding: 8px 0px;
    position: relative;
}

.dropdown {
    position: inherit;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0px;
    background: var(--white);
    border: 1px solid rgb(238, 238, 238);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
    border-radius: 6px;
    display: none;
    z-index: 2000;
    width: 50%;
    padding: 10px 15px;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
}

.dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu .dropdown-links {
    padding: 16px 16px 20px;
}

.dropdown-menu .dropdown-links h3 {
    font-size: 20px;
}

.dropdown-menu .dropdown-links ul {
    padding-left: 0px;
    list-style-type: none;
    column-count: 2;
}

.dropdown-menu .dropdown-links ul li {
    margin-bottom: 9px;
}

.dropdown-menu .dropdown-links ul li a {
    padding: 0px;
}

.dropdown-menu .dropdown-links.collections {
    background-color: rgb(244, 244, 244);
    padding-bottom: 16px;
    border-radius: 6px;
}

.dropdown-menu .dropdown-info {
    padding: 10px 20px;
}

.dropdown-menu .dropdown-info h3 {
    color: var(--hero-blue);
    font-size: 18px;
}

.dropdown-menu .dropdown-info h1 {
    font-size: 22px;
    margin-bottom: 20px;
}

.dropdown-menu .dropdown-deals {
    display: flex;
    flex-wrap: wrap;
    background: rgb(244, 244, 244);
    padding: 10px;
    gap: 10px;
}

.dropdown-menu .dropdown-deals h2 {
    flex: 0 0 100%;
    font-size: 21px;
}

.dropdown-menu .dropdown-deals .dropdown-deals-item {
    flex: 0 0 49%;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgb(255, 255, 255);
    padding: 6px;
}

.dropdown-menu .dropdown-deals .dropdown-deals-item img {
    width: 60px;
    border-radius: 6px;
}

.dropdown-menu .dropdown-deals .dropdown-deals-item h3 {
    font-size: 16px;
    margin: 0px;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 12px;
}

.hamburger {
    display: inline-block;
    width: 28px;
    height: 18px;
    position: relative;
}

.hamburger span {
    position: absolute;
    left: 0px;
    right: 0px;
    height: 2px;
    background: var(--text-dark);
    display: block;
    transition: transform 0.25s, opacity 0.25s;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    bottom: 0px;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0px;
    background: rgba(0, 0, 0, 0.35);
    display: none;
    z-index: 3000;
    transition: opacity 0.25s;
    opacity: 0;
}

.mobile-nav-overlay.open {
    display: block;
    opacity: 1;
}

.mobile-nav-overlay.open .mobile-nav-panel {
    left: 0px;
}

.mobile-nav-panel {
    position: fixed;
    top: 0px;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgb(255, 255, 255);
    transition: 0.3s;
    z-index: 9999;
    padding-left: 30px;
}

.mobile-nav-panel.open {
    right: 0px;
}

.mobile-close-btn {
    font-size: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 1;
    float: right;
}

.mobile-primary-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0px 30px;
}

.mobile-primary-nav .nav-link {
    padding: 12px 6px;
    font-size: 16px;
    border-bottom: 1px solid rgb(240, 240, 240);
}

.mobile-primary-nav .dropdown {
    position: static;
}

.mobile-primary-nav .dropdown-menu {
    display: none;
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 0px;
    background: transparent;
}

.mobile-primary-nav .dropdown.open>.dropdown-menu {
    display: block;
}

.mobile-primary-nav .dropdown-menu .dropdown-links,
.mobile-primary-nav .dropdown-menu .dropdown-deals,
.mobile-primary-nav .dropdown-menu .dropdown-info {
    background: transparent;
    padding: 10px 0px 18px;
}

.mobile-primary-nav .dropdown-menu .dropdown-links ul {
    column-count: 1;
    padding-left: 0px;
}

.mobile-primary-nav .dropdown-toggle::after {
    content: "\9 ";
    transform: rotate(0deg);
    transition: transform 0.2s;
    font-size: 15px;
    color: rgb(153, 153, 153);
}

.mobile-primary-nav .dropdown.open>.dropdown-toggle::after {
    transform: rotate(-180deg);
}

.mobile-footer-cta {
    border-top: 1px solid rgb(238, 238, 238);
    padding-top: 16px;
    margin-top: 8px;
    display: flex;
    gap: 0px;
    flex-direction: column;
    align-items: start;
    text-align: start;
}

.mobile-footer-cta p {
    margin-bottom: 5px;
}

@media (max-width: 991px) {
    .primary-nav:not(.mobile-primary-nav) {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-block;
        padding-top: 20px;
    }

    .location-info-container {
        display: none !important;
    }

    .login-btn {
        display: none;
    }

    .categories-scroll {
        scrollbar-width: auto;
        justify-content: flex-start;
    }

    body {
        overflow-x: hidden;
    }

    .center-slider-bar .col-6 {
        width: 100%;
    }

    .sliding-text-item {
        font-size: 7px !important;
    }

    .mobile-footer-cta .login-btn {
        display: inline-block;
    }

    .dropdown-menu .dropdown-info {
        display: none;
    }

    .mobile-primary-nav .dropdown-menu .dropdown-links ul {
        column-count: 2;
    }

    .dropdown-menu .dropdown-deals .dropdown-deals-item {
        flex: 0 0 100%;
    }
}

@media (min-width: 992px) {
    .mobile-nav-overlay {
        display: none !important;
        opacity: 0 !important;
    }
}

.hero-slider-section {
    position: relative;
    overflow: hidden;
}

@media (max-width: 992px) {
    .hero-slider-section {
        height: fit-content;
    }
}

.hero-carousel {
    height: fit-content;
}

.hero-slide {
    position: relative;
    overflow: hidden;
    padding: 160px 0px;
}

@media (max-width: 992px) {
    .hero-slide {
        height: fit-content;
        padding: 30px 0px;
    }
}

.hero-slide-background {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-placeholder {
    width: 100%;
    height: 100%;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.hero-slide .container-fluid {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-left-content {
    color: var(--white);
    z-index: 3;
}

.hero-content-wrapper {
    text-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px;
    width: 70%;
}

.hero-heading {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

@media (max-width: 992px) {
    .hero-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 1.7rem;
        margin-bottom: 0px;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
}

.hero-cta {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 11px 1.5rem;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px !important;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 16px;
    background: var(--primary);
    color: var(--white);
}

.hero-cta-accent {
    background: var(--accent);
}

.hero-cta-accent:hover {
    background: var(--accent);
}

.hero-right-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 2rem;
}

@media (max-width: 992px) {
    .hero-right-content {
        padding-right: 1rem;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-right-content {
        display: none;
    }
}

.stacked-cards {
    position: relative;
    width: 300px;
    height: 400px;
}

@media (max-width: 992px) {
    .stacked-cards {
        transform: scale(0.85);
    }
}

.promo-card {
    position: absolute;
    width: 280px;
    height: 360px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 8px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.promo-card:hover {
    transform: scale(1.03);
}

.card-1 {
    top: 0px;
    right: 0px;
    transform: rotate(-10deg);
    z-index: 2;
}

.card-2 {
    bottom: 0px;
    right: 20px;
    transform: rotate(8deg);
    z-index: 1;
}

.card-placeholder {
    text-align: center;
    color: var(--text-dark);
    font-weight: 600;
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background-color: var(--white);
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 12px;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    z-index: 10;
    opacity: 0.9;
}

.hero-nav-btn:hover {
    transform: translateY(-50%) scale(1.1);
    background-color: rgb(248, 248, 248);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 6px 16px;
}

.hero-nav-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.hero-nav-left {
    left: 0px;
    border-radius: 0% 50% 50% 0%;
}

.hero-nav-right {
    right: 0px;
    border-radius: 50% 0% 0% 50%;
}

.hero-custom-dots {
    position: absolute;
    bottom: 24px;
    left: 110px;
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.hero-custom-dots .owl-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0px;
    margin: 0px;
    transition: 0.3s;
}

.hero-custom-dots .owl-dot.active {
    background: var(--white);
    width: 24px;
}

.hero-carousel .owl-stage-outer {
    height: fit-content;
}

.hero-carousel .owl-stage {
    height: fit-content;
}

.hero-carousel .owl-item {
    height: fit-content;
}

.hero-carousel .owl-dots {
    display: none;
}

.hero-content-wrapper,
.promo-card {
    padding-left: 70px;
    will-change: transform, opacity;
}

.products-dispensaries-section {
    padding: 4rem 0px;
    background-color: var(--white);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.products-carousel-wrapper {
    padding: 0px 0rem;
}

@media (max-width: 768px) {
    .products-carousel-wrapper {
        padding: 0px 3rem;
    }
}

.products-carousel {
    margin: 0px;
    position: initial;
}

.products-carousel .owl-stage-outer {
    padding: 1rem 0px;
}

.products-carousel .owl-item {
    padding: 0px;
}

.product-card {
    width: 100%;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    margin: 0px;
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}

.card-image img {
    width: 100% !important;
    height: 100%;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media (max-width: 768px) {
    .card-title {
        font-size: 1.2rem;
    }
}

.card-description {
    font-size: 0.95rem;
    color: rgb(102, 102, 102);
    margin-bottom: 1.25rem;
    line-height: 1.5;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.card-cta {
    background-color: var(--hero-blue);
    color: var(--white);
    border: none;
    padding: 0.55rem 0.9rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
    letter-spacing: 0.5px;
}

.card-cta:hover {
    background-color: rgb(0, 158, 78);
    transform: translateY(-1px);
    color: rgb(255, 255, 255);
}

.products-nav-left,
.products-nav-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.products-nav-left {
    left: 0px;
    border-radius: 0% 50% 50% 0%;
}

.products-nav-right {
    right: 0px;
    border-radius: 50% 0% 0% 50%;
}

@media (max-width: 768px) {
    .hero-nav-btn {
        width: 48px;
        height: 48px;
    }

    .hero-nav-left {
        left: 0px;
        top: 58%;
    }

    .hero-nav-right {
        right: 0px;
        top: 58%;
    }

    .hero-custom-dots {
        left: 50%;
        transform: translateX(-50%);
        bottom: 16px;
    }

    .primary-nav {
        flex-direction: column;
        gap: 1rem;
        justify-content: start;
        align-items: start;
    }

    .location-info {
        font-size: 0.75rem;
        justify-content: end;
        align-items: baseline;
    }
}

.inventory-sec {
    padding: 30px 0px;
    background-color: rgb(244, 244, 244);
}

.inventory-sec .sec-title {
    margin-bottom: 20px;
    padding-left: 10px;
}

.inventory-sec .sec-title h1 {
    font-size: 30px;
}

.inventory-sec .container-fluid {
    padding: 0px;
}

.inventory-carousel-wrapper {
    position: relative;
    padding: 0px 10px;
}

.inventory-sec .inventory-card {
    position: relative;
}

.inventory-sec .inventory-card .inventory-item-title {
    position: absolute;
    top: 9%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.inventory-sec .inventory-card .inventory-item-title h3 {
    color: rgb(255, 255, 255);
    font-size: 16px;
}

.inventory-sec .inventory-nav-left {
    left: 0px;
    border-radius: 0% 50% 50% 0%;
}

.inventory-sec .inventory-nav-right {
    right: 0px;
    border-radius: 50% 0% 0% 50%;
}

.flower-sec {
    padding: 30px 0px;
}

.flower-sec .sec-title {
    padding-left: 10px;
    margin-bottom: 20px;
}

.flower-sec .sec-title h1 {
    font-size: 30px;
}

.flower-sec .flower-carousel-wrapper {
    position: relative;
}

.flower-sec .flower-carousel {
    padding-left: 10px;
}

.flower-sec .flower-nav-left {
    left: 0px;
    border-radius: 0% 50% 50% 0%;
}

.flower-sec .flower-nav-right {
    right: 0px;
    border-radius: 50% 0% 0% 50%;
}

.flower-sec .flower-card .image {
    position: relative;
    width: 100%;
    height: 236px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(244, 244, 244);
}

.flower-sec .flower-card .image img {
    width: 156px;
}

.flower-sec .flower-card .image .discount-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--hero-blue);
    color: rgb(255, 255, 255);
    padding: 0px 10px;
    font-size: 12px;
    border-radius: 4px;
}

.flower-sec .flower-card .image .discount-tag svg {
    fill: rgb(255, 255, 255);
}

.flower-sec .flower-card .flower-item-title {
    padding: 20px 0px;
}

.flower-sec .flower-card .flower-item-title h3 {
    font-size: 14px;
}

.flower-sec .flower-card .flower-item-title h1 {
    font-size: 17px;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.flower-sec .flower-card .flower-item-title .price-weight .weight {
    color: rgb(138, 138, 138);
}

.flower-sec .flower-card .flower-item-title .price-weight .price {
    color: var(--hero-blue);
}

.flower-sec .flower-card .flower-item-title .price-weight .price del {
    color: rgb(0, 0, 0);
}

.flower-sec .flower-card .flower-item-title .type-area {
    margin-top: 20px;
}

.flower-sec .flower-card .flower-item-title .type-area .type {
    background-color: rgb(235, 240, 228);
    color: rgb(138, 138, 138);
    padding: 6px 10px;
    border-radius: 200px;
    font-size: 12px;
}

.flower-sec .flower-card .flower-item-title .type-area .thc {
    color: rgb(138, 138, 138);
    font-size: 12px;
}

/* Shop Filtering Section */
.shop-sec {
    padding: 30px 0px;
    position: relative;
}

.shop-sec .shop-title {
    padding-left: 10px;
    margin-bottom: 20px;
}

.shop-sec .shop-title h1 {
    font-size: 30px;
}

.shop-sec .shop-card .image {
    position: relative;
    width: 100%;
    height: 276px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(244, 244, 244);
}

.shop-sec .shop-card .image img {
    width: 206px;
}

.shop-sec .shop-card .image .discount-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--hero-blue);
    color: rgb(255, 255, 255);
    padding: 0px 10px;
    font-size: 12px;
    border-radius: 4px;
}

.shop-sec .shop-card .image .discount-tag svg {
    fill: rgb(255, 255, 255);
}

.shop-sec .shop-card .shop-item-title {
    padding: 20px 0px;
}

.shop-sec .shop-card .shop-item-title h3 {
    font-size: 14px;
}

.shop-sec .shop-card .shop-item-title h1 {
    font-size: 17px;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.shop-sec .shop-card .shop-item-title .price-weight .weight {
    color: rgb(138, 138, 138);
}

.shop-sec .shop-card .shop-item-title .price-weight .price {
    color: var(--hero-blue);
}

.shop-sec .shop-card .shop-item-title .price-weight .price del {
    color: rgb(0, 0, 0);
}

.shop-sec .shop-card .shop-item-title .type-area {
    margin-bottom: 20px;
}

.shop-sec .shop-card .shop-item-title .type-area .type {
    background-color: rgb(235, 240, 228);
    color: rgb(138, 138, 138);
    padding: 6px 10px;
    border-radius: 200px;
    font-size: 12px;
}

.shop-sec .shop-card .shop-item-title .type-area .thc {
    color: rgb(138, 138, 138);
    font-size: 12px;
}

/* Sidebar */
.filter-sidebar {
    border: 1px solid #eee;
    padding: 15px;
    height: 100%;
    position: sticky;
    top: 0;
    left: 0;
}

.filter-title {
    font-size: 12px;
    margin-bottom: 15px;
    color: #979797;
}

.filter-group {
    border-bottom: 1px solid #ddd;
}

.filter-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 12px 0;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.filter-content {
    display: none;
    padding-bottom: 10px;
}

.filter-content label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}

/* Top Toolbar */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.shop-toolbar input {
    width: 22%;
    padding: 8px;
    border: 1px solid #00000030;
}

.shop-toolbar select {
    padding: 8px;
    border: 1px solid #00000030;
}

/* Price Range Slider */
.price-range-content {
    padding: 10px 0;
}

.price-range-values {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
    color: #333;
}

.price-range-slider {
    position: relative;
    height: 30px;
}

.price-range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    pointer-events: none;
    -webkit-appearance: none;
    background: none;
}

.price-range-slider input[type="range"]::-webkit-slider-thumb {
    pointer-events: auto;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 2px solid orange;
    border-radius: 50%;
    cursor: pointer;
}

.price-range-slider input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background: orange;
    border-radius: 4px;
}


.site-footer {
    background-color: var(--hero-blue);
    color: var(--light-text);
    padding: 20px 0px 0px;
    font-family: sans-serif;
    font-size: 14px;
}

.footer-content-main {
    margin: 0px auto;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-column {
    flex-basis: 33.33%;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 5px;
    color: rgb(255, 255, 255);
}

.title-separator {
    border: 0px;
    height: 1px;
    background-color: rgb(255, 255, 255);
    margin-bottom: 25px;
}

.link-group {
    margin-bottom: 20px;
    flex: 0 0 50%;
}

.link-group.articles ul {
    padding-left: 0px;
    list-style-type: none;
    column-count: 2;
}

.link-group.articles ul li {
    margin-bottom: 10px;
}

.group-heading {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 0px;
    margin-bottom: 15px;
    color: var(--primary);
    flex: 0 0 100%;
}

.quick-links .links-grid {
    display: flex;
    flex-wrap: wrap;
}

.quick-links a {
    margin-bottom: 10px;
}

.shop-content {
    display: flex;
    flex-wrap: wrap;
}

.shop-content .collections {
    margin-top: 15px;
    flex: 0 0 100%;
}

.shop-content .collections ul {
    column-count: 2;
}

.shop ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.shop li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.shop .icon {
    display: inline-block;
    width: 20px;
    text-align: center;
}

.footer-column a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    margin-bottom: 5px;
    display: block;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--link-hover-color);
}

.footer-legal-bar {
    background-color: rgb(255, 255, 255);
    color: var(--dark-text);
    font-size: 12px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px auto;
}

.footer-legal-bar .legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.footer-legal-bar a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-bar a:hover {
    color: rgb(51, 51, 51);
}

.copyright {
    font-size: 11px;
}

.social-icons a {
    font-size: 18px;
    margin-left: 15px;
}

@media (max-width: 768px) {
    .footer-content-main {
        flex-direction: column;
        padding: 20px;
        gap: 0px;
    }

    .footer-column {
        flex-basis: 100%;
        margin-bottom: 0px;
    }

    .quick-links .links-grid {
        flex-direction: column;
        gap: 20px;
    }

    .footer-legal-bar {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal-bar .legal-links {
        flex-direction: row;
        gap: 7px;
        justify-content: center;
    }

    .social-icons {
        margin-top: 10px;
    }
}

.store-section {
    padding: 60px 0px;
}

.store-section .container-fluid {
    padding: 0px 100px;
}

.image-slider {
    width: 100%;
}

.slider-main {
    position: relative;
}

.slider-main img {
    width: 100%;
    height: 700px;
    border-radius: 6px;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 45%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 6px;
}

.slider-btn.left {
    left: 0px;
    border-radius: 0% 50% 50% 0%;
}

.slider-btn.right {
    right: 0px;
    border-radius: 50% 0% 0% 50%;
}

.thumbnail-row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.thumb {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    object-fit: cover;
    border: 2px solid transparent;
}

.thumb.active {
    border: 2px solid rgb(247, 149, 30);
    opacity: 1;
}

.store-details {
    padding-left: 40px;
}

.shopping-label {
    font-weight: 600;
    color: var(--hero-blue);
}

.store-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.address {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.btn-area {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.store-btn {
    background: var(--hero-blue);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
}

.change-btn {
    background: rgb(234, 234, 234);
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    cursor: pointer;
}

.info-icons p {
    margin: 10px 0px;
    font-size: 15px;
    display: flex;
    align-items: baseline;
}

.info-icons i {
    color: var(--primary);
    margin-right: 8px;
}

.store-hours {
    margin-top: 25px;
    margin-bottom: 20px;
}

.more-link {
    color: rgb(118, 165, 69);
    cursor: pointer;
    font-weight: 600;
}

.faq-section {
    padding: 30px 0px;
}

.faq-heading {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 35px;
}

.faq-box {
    max-width: 1440px;
    margin: auto;
}

.faq-item {
    border: 1px solid rgb(231, 231, 231);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: rgb(255, 255, 255);
    border: none;
    padding: 18px 20px;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-icon {
    font-size: 20px;
    transition: 0.3s;
}

.faq-answer {
    max-height: 0px;
    overflow: hidden;
    padding: 0px 20px;
    background: rgb(252, 252, 252);
    transition: max-height 0.3s;
}

.faq-answer p {
    padding: 15px 0px 20px;
    font-size: 15px;
    color: rgb(85, 85, 85);
}

.breadcrumb {
    padding: 120px 0;
    background-color: var(--hero-blue);
    margin-bottom: 0;
}

.breadcrumb .container-fluid {
    padding: 0 80px;
}

.breadcrumb .sec-title h1 {
    color: #fff;
    font-size: 50px;
}

.breadcrumb .sec-title p {
    color: #fff;
    font-size: 15px;
}

.sec-about {
    padding: 60px 0;
}

.sec-about .row {
    align-items: center;
}

.sec-about .image img {
    width: 100%;
}

.sec-about-odd {
    background-color: #F4F4F4;
}

.sec-blog {
    padding: 60px 0 30px;
}

.sec-blog .blog-item {
    background: var(--hero-blue);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    padding-bottom: 20px;
}

.sec-blog .container-fluid {
    padding: 0 80px;
}

.sec-blog .blog-item .image {
    width: 100%;
    height: 300px;
    margin-bottom: 10px;
}

.sec-blog .blog-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec-blog .blog-item .blog-info {
    display: flex;
    gap: 20px;
    padding-left: 20px;
    padding-top: 10px;
}

.sec-blog .blog-item .blog-info span {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: #fff;
}

.sec-blog .blog-item .blog-info span img {
    width: 20px;
    filter: invert(1);
}

.sec-blog .blog-item h3 {
    font-size: 25px;
    padding-left: 20px;
    color: #fff;
    margin: 15px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sec-blog .blog-item a {
    color: #fff;
    text-decoration: underline;
    padding-left: 20px;
}

@media (max-width: 1444px) {
    .dropdown-menu .dropdown-info h3 {
        font-size: 13px;
    }

    .dropdown-menu .dropdown-deals .dropdown-deals-item h3 {
        font-size: 12px;
    }

    .hero-content-wrapper {
        width: 90%;
    }
}

@media (max-width: 500px) {
    .store-section .container-fluid {
        padding: 0px 10px;
    }

    .store-details {
        padding-left: 10px;
    }

    .store-section {
        padding: 30px 0px 0px;
    }

    .hero-content-wrapper {
        width: 100%;
        padding-left: 0px;
        text-align: center;
    }

    .products-dispensaries-section {
        padding: 30px 0px;
    }

    .card-image-wrapper {
        height: 120px;
    }

    .slider-main img {
        height: 370px;
    }

    .thumbnail-row {
        margin-bottom: 20px;
    }

    .flower-sec {
        padding: 10px 0px;
    }

    .flower-sec .flower-card .image .discount-tag {
        font-size: 8px;
    }

    .flower-sec .flower-card .flower-item-title h1 {
        font-size: 16px;
    }

    .shop-sec {
        padding: 10px 0px;
    }

    .shop-sec .shop-card .image .discount-tag {
        font-size: 8px;
    }

    .shop-sec .shop-card .shop-item-title h1 {
        font-size: 16px;
    }

    .logo-text {
        font-size: 17px;
    }

    .row-top {
        padding: 0px;
    }
}

/* ============================
   CART SECTION
   ============================ */
.cart-section {
    padding: 60px 0px;
    background-color: var(--white);
}

.cart-section .container-fluid {
    padding: 0px 80px;
}

.cart-items-wrapper {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 8px;
}

.cart-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgb(244, 244, 244);
}

.cart-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0px;
}

.cart-header .cart-count {
    font-size: 18px;
    font-weight: 400;
    color: rgb(138, 138, 138);
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr 120px 150px 120px 50px;
    gap: 20px;
    align-items: center;
    padding: 25px 0px;
    border-bottom: 1px solid rgb(244, 244, 244);
    transition: background-color 0.3s;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100%;
    height: 120px;
    background-color: rgb(244, 244, 244);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0px;
    line-height: 1.3;
}

.cart-item-brand {
    font-size: 14px;
    color: rgb(138, 138, 138);
    margin: 0px;
}

.cart-item-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.cart-item-meta span {
    font-size: 12px;
    color: rgb(138, 138, 138);
}

.cart-item-type {
    background-color: rgb(235, 240, 228);
    color: rgb(138, 138, 138);
    padding: 4px 10px;
    border-radius: 200px;
}

.cart-item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.price-current {
    font-size: 18px;
    font-weight: 700;
    color: var(--hero-blue);
}

.price-original {
    font-size: 14px;
    color: rgb(138, 138, 138);
    text-decoration: line-through;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid rgb(224, 224, 224);
    background-color: var(--white);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    transition: all 0.3s;
    font-weight: 600;
}

.qty-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.qty-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid rgb(224, 224, 224);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.qty-input:focus {
    outline: none;
    border-color: var(--primary);
}

.cart-item-total {
    text-align: right;
}

.item-total-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--hero-blue);
}

.cart-item-remove {
    display: flex;
    justify-content: center;
}

.remove-btn {
    width: 40px;
    height: 40px;
    border: none;
    background-color: transparent;
    color: rgb(220, 53, 69);
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 16px;
}

.remove-btn:hover {
    background-color: rgb(220, 53, 69);
    color: var(--white);
}

.cart-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgb(244, 244, 244);
}

.continue-shopping-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.continue-shopping-btn:hover {
    color: var(--hero-blue);
}

/* Order Summary */
.order-summary {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 8px;
    position: sticky;
    top: 100px;
}

.summary-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgb(244, 244, 244);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.summary-label {
    font-size: 16px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-label i {
    color: var(--primary);
}

.summary-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.summary-value.discount {
    color: rgb(40, 167, 69);
}

.summary-divider {
    height: 1px;
    background-color: rgb(224, 224, 224);
    margin: 20px 0px;
}

.total-row {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid rgb(244, 244, 244);
}

.total-row .summary-label {
    font-size: 20px;
    font-weight: 700;
}

.total-row .summary-value.total {
    font-size: 24px;
    font-weight: 700;
    color: var(--hero-blue);
}

.summary-note {
    margin-top: 20px;
    padding: 15px;
    background-color: rgb(244, 244, 244);
    border-radius: 8px;
    margin-bottom: 20px;
}

.summary-note p {
    margin: 0px;
    font-size: 14px;
    color: rgb(102, 102, 102);
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-note i {
    color: var(--primary);
}

.checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.checkout-btn:hover {
    background-color: rgb(0, 158, 78);
    transform: translateY(-2px);
    box-shadow: rgba(0, 158, 78, 0.3) 0px 4px 12px;
    color: var(--white);
}

.secure-payment {
    text-align: center;
}

.secure-payment p {
    margin: 0px;
    font-size: 13px;
    color: rgb(138, 138, 138);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.secure-payment i {
    color: rgb(40, 167, 69);
}

/* Responsive Cart */
@media (max-width: 992px) {
    .cart-section .container-fluid {
        padding: 0px 20px;
    }

    .cart-item {
        grid-template-columns: 100px 1fr;
        gap: 15px;
        padding: 20px;
        border: 1px solid rgb(244, 244, 244);
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .cart-item-image {
        grid-row: 1 / 3;
        height: 100px;
    }

    .cart-item-details {
        grid-column: 2;
    }

    .cart-item-price {
        grid-column: 2;
        grid-row: 2;
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .cart-item-quantity {
        grid-column: 1 / 3;
        justify-content: flex-start;
        margin-top: 10px;
    }

    .cart-item-total {
        grid-column: 1 / 3;
        text-align: left;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid rgb(244, 244, 244);
    }

    .cart-item-remove {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .cart-item {
        position: relative;
    }

    .order-summary {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .cart-section {
        padding: 30px 0px;
    }

    .cart-items-wrapper {
        padding: 20px;
    }

    .cart-header h2 {
        font-size: 22px;
    }

    .cart-item-title {
        font-size: 16px;
    }

    .order-summary {
        padding: 20px;
    }

    .checkout-btn {
        font-size: 16px;
        padding: 12px 20px;
    }
}

@media (max-width: 500px) {
    .cart-section .container-fluid {
        padding: 0px 10px;
    }

    .cart-items-wrapper {
        padding: 15px;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        padding: 15px;
    }

    .cart-item-image {
        height: 80px;
    }
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-icon {
    font-size: 80px;
    color: rgb(224, 224, 224);
    margin-bottom: 20px;
}

.empty-cart h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.empty-cart p {
    color: rgb(138, 138, 138);
    margin-bottom: 30px;
    font-size: 16px;
}

/* ============================
   CHECKOUT SECTION
   ============================ */
.checkout-section {
    padding: 60px 0px;
    background-color: rgb(252, 252, 252);
}

.checkout-section .container-fluid {
    padding: 0px 80px;
}

.checkout-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.checkout-form-block {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 8px;
}

.form-block-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgb(244, 244, 244);
}

.form-block-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-block-header i {
    color: var(--primary);
    font-size: 20px;
}

.form-block-content {
    padding-top: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group .required {
    color: rgb(220, 53, 69);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgb(224, 224, 224);
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s;
    font-family: "Gotham Book", sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 158, 78, 0.1);
}

.form-control::placeholder {
    color: rgb(189, 189, 189);
}

.form-check {
    margin-bottom: 15px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: var(--primary);
}

.form-check-label {
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 400;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option {
    position: relative;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border: 2px solid rgb(224, 224, 224);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    background-color: var(--white);
}

.payment-label i {
    font-size: 20px;
    color: var(--primary);
}

.payment-label span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.payment-option input[type="radio"]:checked + .payment-label {
    border-color: var(--primary);
    background-color: rgba(0, 158, 78, 0.05);
}

.payment-option input[type="radio"]:hover + .payment-label {
    border-color: var(--primary);
}

/* Checkout Summary */
.checkout-summary {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 8px;
    position: sticky;
    top: 100px;
}

.checkout-summary .summary-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgb(244, 244, 244);
}

.summary-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    gap: 15px;
    padding: 15px 0px;
    border-bottom: 1px solid rgb(244, 244, 244);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item-image {
    width: 60px;
    height: 60px;
    background-color: rgb(244, 244, 244);
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.summary-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-item-details {
    flex: 1;
    min-width: 0;
}

.summary-item-details h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0px 0px 5px 0px;
    line-height: 1.3;
}

.summary-item-details p {
    font-size: 12px;
    color: rgb(138, 138, 138);
    margin: 0px 0px 5px 0px;
}

.summary-item-qty {
    font-size: 12px;
    color: rgb(138, 138, 138);
}

.summary-item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--hero-blue);
    flex-shrink: 0;
}

.summary-totals {
    margin-top: 20px;
}

.summary-totals .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.summary-totals .summary-label {
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-totals .summary-label i {
    color: var(--primary);
}

.summary-totals .summary-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.summary-totals .summary-value.free {
    color: rgb(40, 167, 69);
    font-weight: 700;
}

.summary-totals .summary-value.discount {
    color: rgb(40, 167, 69);
}

.summary-totals .summary-divider {
    height: 1px;
    background-color: rgb(224, 224, 224);
    margin: 15px 0px;
}

.summary-totals .total-row {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid rgb(244, 244, 244);
}

.summary-totals .total-row .summary-label {
    font-size: 18px;
    font-weight: 700;
}

.summary-totals .total-row .summary-value.total {
    font-size: 22px;
    font-weight: 700;
    color: var(--hero-blue);
}

/* Promo Code */
.promo-code-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgb(244, 244, 244);
}

.promo-toggle {
    width: 100%;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: color 0.3s;
}

.promo-toggle:hover {
    color: var(--hero-blue);
}

.promo-toggle i {
    font-size: 16px;
}

.promo-input-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.promo-input-wrapper .form-control {
    flex: 1;
}

.promo-apply-btn {
    padding: 12px 20px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.promo-apply-btn:hover {
    background-color: rgb(0, 158, 78);
}

/* Place Order Button */
.place-order-btn {
    width: 100%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 18px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.place-order-btn:hover {
    background-color: rgb(0, 158, 78);
    transform: translateY(-2px);
    box-shadow: rgba(0, 158, 78, 0.3) 0px 4px 12px;
}

.place-order-btn:active {
    transform: translateY(0);
}

.secure-payment {
    text-align: center;
    margin-top: 15px;
}

.secure-payment p {
    margin: 0px;
    font-size: 13px;
    color: rgb(138, 138, 138);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.secure-payment i {
    color: rgb(40, 167, 69);
}

.return-cart {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgb(244, 244, 244);
    text-align: center;
}

.return-cart a {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.return-cart a:hover {
    color: var(--hero-blue);
}

/* Responsive Checkout */
@media (max-width: 992px) {
    .checkout-section .container-fluid {
        padding: 0px 20px;
    }

    .checkout-summary {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding: 30px 0px;
    }

    .checkout-form-block {
        padding: 20px;
    }

    .form-block-header h3 {
        font-size: 18px;
    }

    .checkout-summary {
        padding: 20px;
    }

    .place-order-btn {
        font-size: 16px;
        padding: 15px 20px;
    }
}

@media (max-width: 500px) {
    .checkout-section .container-fluid {
        padding: 0px 10px;
    }

    .checkout-form-block {
        padding: 15px;
    }

    .payment-label {
        padding: 12px 15px;
    }

    .payment-label span {
        font-size: 14px;
    }
}

/* ============================
   PRODUCT DETAIL SECTION
   ============================ */
.product-detail-section {
    padding: 60px 0px;
    background-color: var(--white);
}

.product-detail-section .container-fluid {
    padding: 0px 80px;
}

/* Product Image Gallery */
.product-image-gallery {
    position: sticky;
    top: 100px;
}

.product-main-image {
    width: 100%;
    height: 600px;
    background-color: rgb(244, 244, 244);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
}

.discount-badge {
    background-color: var(--hero-blue);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
}

.product-thumbnails {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.thumbnail-item {
    width: 100px;
    height: 100px;
    background-color: rgb(244, 244, 244);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.thumbnail-item:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: var(--primary);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Information */
.product-info {
    padding-left: 40px;
}

.product-brand {
    font-size: 14px;
    color: rgb(138, 138, 138);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.product-rating .stars {
    color: rgb(255, 193, 7);
    font-size: 18px;
}

.rating-text {
    font-size: 14px;
    color: rgb(138, 138, 138);
}

.product-price-section {
    margin-bottom: 20px;
    padding: 0px;
    background-color: rgb(252, 252, 252);
    border-radius: 8px;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.current-price {
    font-size: 30px;
    font-weight: 700;
    color: var(--hero-blue);
}

.original-price {
    font-size: 20px;
    color: rgb(138, 138, 138);
    text-decoration: line-through;
}

.discount-percent {
    background-color: rgb(40, 167, 69);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.price-note {
    font-size: 14px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgb(252, 252, 252);
    border-radius: 8px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meta-label {
    font-size: 12px;
    color: rgb(138, 138, 138);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.strain-indica {
    background-color: rgb(235, 240, 228);
    color: rgb(138, 138, 138);
    padding: 6px 12px;
    border-radius: 200px;
    display: inline-block;
    width: fit-content;
}

.product-description {
    margin-bottom: 25px;
}

.product-description h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.product-description p {
    font-size: 15px;
    line-height: 1.6;
    color: rgb(102, 102, 102);
}

.product-features {
    margin-bottom: 30px;
}

.product-features h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 10px 0px;
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features i {
    color: var(--primary);
    font-size: 14px;
}

/* Product Actions */
.product-actions {
    margin-bottom: 25px;
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-selector label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.qty-controls .qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgb(224, 224, 224);
    background-color: var(--white);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    transition: all 0.3s;
    font-weight: 600;
}

.qty-controls .qty-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.qty-controls .qty-input {
    width: 100px;
    height: 40px;
    text-align: center;
    border: 1px solid rgb(224, 224, 224);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    padding-left: 11px;
}

.qty-controls .qty-input:focus {
    outline: none;
    border-color: var(--primary);
}

.action-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.add-to-cart-btn {
    flex: 1;
    background-color: var(--hero-blue);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-btn:hover {
    background-color: rgb(0, 158, 78);
    transform: translateY(-2px);
    box-shadow: rgba(0, 158, 78, 0.3) 0px 4px 12px;
}

.wishlist-btn {
    width: 50px;
    height: 50px;
    border: 2px solid rgb(224, 224, 224);
    background-color: var(--white);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: rgb(138, 138, 138);
    transition: all 0.3s;
}

.wishlist-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.product-availability {
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgb(235, 240, 228);
    border-radius: 8px;
}

.product-availability p {
    margin: 0px;
    font-size: 14px;
    color: rgb(40, 167, 69);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-availability i {
    color: rgb(40, 167, 69);
}

.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgb(244, 244, 244);
}

.product-share span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.share-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgb(224, 224, 224);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
}

.share-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: rgba(0, 158, 78, 0.05);
}

/* Product Tabs */
.product-tabs {
    margin-top: 60px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 8px;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid rgb(244, 244, 244);
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    color: rgb(138, 138, 138);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.tab-pane h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.tab-pane p {
    font-size: 15px;
    line-height: 1.6;
    color: rgb(102, 102, 102);
    margin-bottom: 15px;
}

.tab-pane ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.tab-pane li {
    font-size: 15px;
    line-height: 1.8;
    color: rgb(102, 102, 102);
    margin-bottom: 8px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.specs-table tr {
    border-bottom: 1px solid rgb(244, 244, 244);
}

.specs-table td {
    padding: 15px 0px;
    font-size: 15px;
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    width: 200px;
}

.specs-table td:last-child {
    color: rgb(102, 102, 102);
}

/* Reviews */
.reviews-summary {
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgb(252, 252, 252);
    border-radius: 8px;
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--hero-blue);
    display: block;
    margin-bottom: 10px;
}

.overall-rating .stars {
    font-size: 24px;
    color: rgb(255, 193, 7);
    margin-bottom: 10px;
}

.overall-rating p {
    margin: 0px;
    color: rgb(138, 138, 138);
    font-size: 14px;
}

.review-item {
    padding: 20px 0px;
    border-bottom: 1px solid rgb(244, 244, 244);
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reviewer-info strong {
    font-size: 16px;
    color: var(--text-dark);
}

.review-stars {
    color: rgb(255, 193, 7);
    font-size: 14px;
}

.review-date {
    font-size: 14px;
    color: rgb(138, 138, 138);
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgb(102, 102, 102);
    margin: 0px;
}

.view-all-reviews {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.view-all-reviews:hover {
    color: var(--hero-blue);
}

/* Related Products */
.related-products-section {
    margin-top: 60px;
}

.related-products-section .section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.related-products-carousel {
    position: relative;
}

.related-product-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 10px;
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.related-product-card .product-image {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: rgb(244, 244, 244);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.related-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.related-product-card .discount-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--hero-blue);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.product-info-card {
    padding: 20px;
}

.product-info-card .brand {
    font-size: 12px;
    color: rgb(138, 138, 138);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product-info-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-info .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--hero-blue);
}

.price-info .old-price {
    font-size: 14px;
    color: rgb(138, 138, 138);
    text-decoration: line-through;
}

.view-product-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.view-product-btn:hover {
    background-color: rgb(0, 158, 78);
    color: var(--white);
}

/* Responsive Product Detail */
@media (max-width: 992px) {
    .product-detail-section .container-fluid {
        padding: 0px 20px;
    }

    .product-info {
        padding-left: 0px;
        margin-top: 30px;
    }

    .product-image-gallery {
        position: static;
    }

    .product-main-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 30px 0px;
    }

    .product-title {
        font-size: 28px;
    }

    .current-price {
        font-size: 28px;
    }

    .product-meta {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .add-to-cart-btn {
        width: 100%;
    }

    .product-tabs {
        padding: 20px;
    }

    .tab-buttons {
        flex-direction: column;
        gap: 0px;
    }

    .tab-btn {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgb(244, 244, 244);
        border-left: 3px solid transparent;
        margin-bottom: 0px;
    }

    .tab-btn.active {
        border-left-color: var(--primary);
        border-bottom-color: rgb(244, 244, 244);
    }
}

@media (max-width: 500px) {
    .product-detail-section .container-fluid {
        padding: 0px 10px;
    }

    .product-main-image {
        height: 300px;
    }

    .thumbnail-item {
        width: 70px;
        height: 70px;
    }

    .product-title {
        font-size: 24px;
    }

    .product-tabs {
        padding: 15px;
    }
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
    padding: 20px;
    z-index: 10000;
    animation: slideInRight 0.3s ease-out;
    max-width: 350px;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-content i {
    font-size: 24px;
    color: rgb(40, 167, 69);
}

.notification-text {
    flex: 1;
}

.notification-text strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.notification-text p {
    margin: 0px;
    font-size: 14px;
    color: rgb(138, 138, 138);
}

.view-cart-link {
    padding: 8px 15px;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.view-cart-link:hover {
    background-color: rgb(0, 158, 78);
    color: var(--white);
}

@media (max-width: 768px) {
    .cart-notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* ============================
   REVIEWS SECTION
   ============================ */
.reviews-section {
    padding: 60px 0px;
    background-color: rgb(252, 252, 252);
}

.reviews-section .container-fluid {
    padding: 0px 80px;
}

/* Review Summary Card */
.review-summary-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 8px;
    position: sticky;
    top: 100px;
}

.overall-rating-box {
    text-align: center;
    padding: 30px 0px;
    border-bottom: 2px solid rgb(244, 244, 244);
    margin-bottom: 30px;
}

.rating-number-large {
    font-size: 56px;
    font-weight: 700;
    color: var(--hero-blue);
    margin-bottom: 10px;
}

.stars-large {
    font-size: 28px;
    color: rgb(255, 193, 7);
    margin-bottom: 10px;
}

.rating-count {
    font-size: 14px;
    color: rgb(138, 138, 138);
    margin: 0px;
}

.rating-breakdown {
    margin-bottom: 30px;
}

.rating-breakdown h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.rating-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    width: 40px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-label i {
    color: rgb(255, 193, 7);
    font-size: 12px;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background-color: rgb(244, 244, 244);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background-color: rgb(255, 193, 7);
    border-radius: 4px;
    transition: width 0.3s;
}

.rating-percent {
    font-size: 14px;
    font-weight: 600;
    color: rgb(138, 138, 138);
    width: 40px;
    text-align: right;
}

.review-filters {
    margin-bottom: 25px;
    padding-top: 25px;
    border-top: 1px solid rgb(244, 244, 244);
}

.review-filters h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.filter-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-btn {
    padding: 12px 20px;
    background-color: rgb(252, 252, 252);
    border: 1px solid rgb(224, 224, 224);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.write-review-cta {
    padding-top: 25px;
    border-top: 1px solid rgb(244, 244, 244);
}

.write-review-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--primary);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.write-review-btn:hover {
    background-color: rgb(0, 158, 78);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: rgba(0, 158, 78, 0.3) 0px 4px 12px;
}

/* Reviews List */
.reviews-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 25px;
}

.reviews-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-sort label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.sort-select {
    padding: 10px 15px;
    border: 1px solid rgb(224, 224, 224);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-dark);
    background-color: var(--white);
    cursor: pointer;
    transition: all 0.3s;
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary);
}

.reviews-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}

.review-card {
    background-color: var(--white);
    padding: 25px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: box-shadow 0.3s, opacity 0.3s, transform 0.3s;
    flex: 0 0 49%;
    margin-top: 20px;
}

.review-card:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(244, 244, 244);
}

.reviewer-info {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--hero-blue));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.reviewer-details h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0px 0px 8px 0px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.review-stars {
    color: rgb(255, 193, 7);
    font-size: 14px;
}

.review-date {
    font-size: 14px;
    color: rgb(138, 138, 138);
}

.review-verified {
    font-size: 12px;
    color: rgb(40, 167, 69);
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.review-verified i {
    font-size: 14px;
}

.review-card-body {
    padding-top: 10px;
}

.review-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgb(102, 102, 102);
    margin-bottom: 15px;
}

.review-helpful {
    padding-top: 15px;
    border-top: 1px solid rgb(244, 244, 244);
}

.helpful-btn {
    background: none;
    border: 1px solid rgb(224, 224, 224);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    color: rgb(138, 138, 138);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.helpful-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: rgba(0, 158, 78, 0.05);
}

.helpful-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Pagination */
.reviews-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgb(244, 244, 244);
}

.pagination-btn {
    padding: 10px 20px;
    background-color: var(--white);
    border: 1px solid rgb(224, 224, 224);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:hover:not(:disabled) {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 5px;
}

.page-number {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 1px solid rgb(224, 224, 224);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
}

.page-number:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.page-number.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.page-ellipsis {
    padding: 0px 5px;
    color: rgb(138, 138, 138);
}

/* Write Review Section */
.write-review-section {
    margin-top: 60px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 8px;
}

.write-review-section .section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.review-form {
    max-width: 800px;
}

.review-form .form-group {
    margin-bottom: 25px;
}

.review-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.review-form .required {
    color: rgb(220, 53, 69);
}

.rating-input {
    display: flex;
    gap: 5px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-input input[type="radio"] {
    display: none;
}

.star-label {
    font-size: 32px;
    color: rgb(224, 224, 224);
    cursor: pointer;
    transition: color 0.2s;
}

.rating-input input[type="radio"]:checked ~ .star-label,
.rating-input input[type="radio"]:checked + .star-label,
.star-label:hover,
.star-label:hover ~ .star-label {
    color: rgb(255, 193, 7);
}

.review-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgb(224, 224, 224);
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s;
    font-family: "Gotham Book", sans-serif;
}

.review-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 158, 78, 0.1);
}

.review-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-review-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-review-btn:hover {
    background-color: rgb(0, 158, 78);
    transform: translateY(-2px);
    box-shadow: rgba(0, 158, 78, 0.3) 0px 4px 12px;
}

/* Responsive Reviews */
@media (max-width: 992px) {
    .reviews-section .container-fluid {
        padding: 0px 20px;
    }

    .review-summary-card {
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 30px 0px;
    }

    .review-summary-card {
        padding: 20px;
    }

    .review-card {
        padding: 20px;
    }

    .review-card-header {
        flex-direction: column;
        gap: 15px;
    }

    .write-review-section {
        padding: 25px;
    }

    .pagination-numbers {
        display: none;
    }
}

@media (max-width: 500px) {
    .reviews-section .container-fluid {
        padding: 0px 10px;
    }

    .review-summary-card {
        padding: 15px;
    }

    .review-card {
        padding: 15px;
        flex: 0 0 100%;
    }

    .write-review-section {
        padding: 20px;
    }
}

/* ============================
   CONTACT SECTION
   ============================ */
.contact-section {
    padding: 60px 0px;
    background-color: rgb(252, 252, 252);
}

.contact-section .container-fluid {
    padding: 0px 80px;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 8px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 15px;
    color: rgb(138, 138, 138);
    margin-bottom: 30px;
}

.contact-form {
    margin-top: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form .required {
    color: rgb(220, 53, 69);
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgb(224, 224, 224);
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s;
    font-family: "Gotham Book", sans-serif;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 158, 78, 0.1);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-form .form-check {
    margin-bottom: 25px;
}

.contact-form .form-check-input {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: var(--primary);
}

.contact-form .form-check-label {
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 400;
}

.contact-form .form-check-label a {
    color: var(--primary);
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}

.submit-contact-btn {
    width: 100%;
    background-color: var(--hero-blue);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-contact-btn:hover {
    background-color: rgb(0, 158, 78);
    transform: translateY(-2px);
    box-shadow: rgba(0, 158, 78, 0.3) 0px 4px 12px;
}

.submit-contact-btn:active {
    transform: translateY(0);
}

/* Contact Information */
.contact-info-wrapper {
    padding-left: 40px;
}

.info-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.info-subtitle {
    font-size: 15px;
    color: rgb(138, 138, 138);
    margin-bottom: 30px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 8px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--hero-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 24px;
    color: var(--white);
}

.info-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.info-content p {
    font-size: 15px;
    color: rgb(102, 102, 102);
    line-height: 1.6;
    margin: 0px 0px 5px 0px;
}

.info-content a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: var(--hero-blue);
    text-decoration: underline;
}

.info-note {
    font-size: 13px;
    color: rgb(138, 138, 138);
    font-style: italic;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0px;
    border-bottom: 1px solid rgb(244, 244, 244);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

.hours-item .time {
    font-size: 14px;
    color: rgb(102, 102, 102);
}

/* Social Media */
.contact-social {
    padding-top: 30px;
    border-top: 1px solid rgb(244, 244, 244);
}

.contact-social h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 2px solid rgb(224, 224, 224);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: rgba(0, 158, 78, 0.05);
    transform: translateY(-3px);
}

/* Map Section */
.contact-map-section {
    margin-top: 60px;
}

.map-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

.map-container {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 8px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* Responsive Contact */
@media (max-width: 992px) {
    .contact-section .container-fluid {
        padding: 0px 20px;
    }

    .contact-info-wrapper {
        padding-left: 0px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 30px 0px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .form-title,
    .info-title {
        font-size: 24px;
    }

    .contact-info-card {
        padding: 20px;
    }

    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 500px) {
    .contact-section .container-fluid {
        padding: 0px 10px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .contact-info-card {
        flex-direction: column;
        padding: 20px;
        text-align: center;
        align-items: center;
    }

    .info-icon {
        margin: 0px auto;
    }

    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* ============================
   DISPENSARIES SECTION
   ============================ */
.dispensaries-section {
    padding: 60px 0px;
    background-color: rgb(252, 252, 252);
}

.dispensaries-section .container-fluid {
    padding: 0px 80px;
}

.dispensaries-header {
    text-align: center;
    margin-bottom: 50px;
}

.dispensaries-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.dispensaries-header p {
    font-size: 16px;
    color: rgb(138, 138, 138);
    max-width: 600px;
    margin: 0px auto;
}

.dispensary-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dispensary-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.store-image {
    width: 100%;
    height: 390px;
    overflow: hidden;
    background-color: rgb(244, 244, 244);
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.dispensary-card:hover .store-image img {
    transform: scale(1.05);
}

.store-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.store-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.store-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
    flex: 1;
}

.detail-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.detail-item i {
    font-size: 20px;
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
    width: 24px;
}

.detail-content {
    flex: 1;
}

.detail-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgb(138, 138, 138);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.detail-value {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.detail-value a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.detail-value a:hover {
    color: var(--hero-blue);
    text-decoration: underline;
}

.hours-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0px;
    border-bottom: 1px solid rgb(244, 244, 244);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

.hours-time {
    font-size: 14px;
    color: rgb(102, 102, 102);
}

.store-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgb(244, 244, 244);
}

.store-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.store-btn.primary-btn {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.store-btn.primary-btn:hover {
    background-color: rgb(0, 158, 78);
    border-color: rgb(0, 158, 78);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: rgba(0, 158, 78, 0.3) 0px 4px 12px;
}

.store-btn.secondary-btn {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.store-btn.secondary-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Map Section */
.dispensaries-map-section {
    margin-top: 60px;
}

.map-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

.dispensaries-map-section .map-container {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 8px;
}

.dispensaries-map-section .map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* Responsive Dispensaries */
@media (max-width: 992px) {
    .dispensaries-section .container-fluid {
        padding: 0px 20px;
    }

    .dispensary-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .dispensaries-section {
        padding: 30px 0px;
    }

    .dispensaries-header h2 {
        font-size: 28px;
    }

    .store-content {
        padding: 20px;
    }

    .store-name {
        font-size: 20px;
    }

    .store-actions {
        flex-direction: column;
    }

    .store-btn {
        width: 100%;
    }

    .dispensaries-map-section .map-container iframe {
        height: 400px;
    }
}

@media (max-width: 500px) {
    .dispensaries-section .container-fluid {
        padding: 0px 10px;
    }

    .store-content {
        padding: 15px;
    }

    .store-name {
        font-size: 18px;
    }

    .detail-item {
        flex-direction: column;
        gap: 10px;
    }

    .detail-item i {
        margin-top: 0px;
    }

    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .dispensaries-map-section .map-container iframe {
        height: 300px;
    }
}

.btn-primary.proddets {
    background-color: var(--hero-blue);
    border-color: var(--hero-blue);
    margin-top: 12px;
}

.pagination-wrapper .hidden {
    display: none;
}













/* Blog Detail Page Styles */
.sec-blog-detail {
    padding: 60px 0;
    background: #f9f9f9;
}

.blog-detail-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    height: 600px;
}

.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.blog-meta img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.blog-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-top: 30px;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #222;
}


/* Responsive */
@media (max-width: 768px) {
    .blog-detail-content {
        padding: 20px;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .share-buttons a {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
}

.store-section .store-title {
    margin-bottom: 0;
    line-height: 0;
}




/* Store Selection Modal Styles */
#storeSelectionModal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

#storeSelectionModal .modal-header {
    padding: 2rem 1rem 0rem;
}

#storeSelectionModal .modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

#storeSelectionModal .store-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#storeSelectionModal .store-option {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

#storeSelectionModal .store-option:hover {
    border-color: var(--hero-blue);
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#storeSelectionModal .store-option.selected {
    border-color: var(--hero-blue);
    background-color: rgba(var(--hero-blue-rgb, 0, 123, 255), 0.05);
}

#storeSelectionModal .store-option-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#storeSelectionModal .store-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(var(--hero-blue-rgb, 0, 123, 255), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--hero-blue);
}

#storeSelectionModal .store-option.selected .store-icon {
    background-color: var(--hero-blue);
    color: white;
}

#storeSelectionModal .store-details {
    flex: 1;
}

#storeSelectionModal .store-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
}

#storeSelectionModal .store-address {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
}

#storeSelectionModal .store-check {
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: transparent;
    transition: all 0.3s ease;
}

#storeSelectionModal .store-option.selected .store-check {
    background-color: var(--hero-blue);
    border-color: var(--hero-blue);
    color: white;
}

#storeSelectionModal #locationSelector:hover {
    opacity: 0.8;
}

#storeSelectionModal .store-details {
    gap: 6px;
    margin-bottom: 5px;
    padding-left: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    #storeSelectionModal .modal-dialog {
        margin: 1rem;
    }
    
    #storeSelectionModal .store-option-content {
        gap: 0.75rem;
    }
    
    #storeSelectionModal .store-icon {
        width: 40px;
        height: 40px;
    }
    
    #storeSelectionModal .store-icon svg {
        width: 24px;
        height: 24px;
    }
    
    #storeSelectionModal .store-name {
        font-size: 1rem;
    }
    
    #storeSelectionModal .store-address {
        font-size: 0.813rem;
    }
}




.success-icon {
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

#cartSuccessModal .btn-primary {
    background-color: var(--hero-blue);
    border-color: var(--hero-blue);
    font-weight: 600;
    padding: 12px 24px;
}

#cartSuccessModal .btn-primary:hover {
    background-color: #6d1216;
    border-color: #6d1216;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(132, 22, 26, 0.3);
}

#cartSuccessModal .btn-outline-secondary {
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid #6c757d;
}

#cartSuccessModal .btn-outline-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    transform: translateY(-2px);
}

.cartheader {
    position: relative;
}

.cartheader i {
    font-size: 16px;
    color: #000;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    line-height: normal;
    background-color: #043019;
    color: #fff;
    height: 16px;
    width: 16px;
    text-align: center;
    border-radius: 100px;
    font-size: 12px;
}






/* Age Verification Full Screen Overlay */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: none;
    z-index: 9999;
}

.age-verification-split {
    display: flex;
    width: 100%;
    height: 100%;
}

/* Left Side - Image */
.age-verification-left {
    flex: 1;
    background: linear-gradient(135deg, #ff9a56 0%, #ffb347 100%);
    position: relative;
    overflow: hidden;
}

.age-verification-image {
    width: 100%;
    height: 100%;
    background-image: url('../images/age21.jpg'); /* Add your image here */
    background-size: cover;
    background-position: center;
}

/* Right Side - Form */
.age-verification-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: #fff;
}

.age-verification-form {
    max-width: 500px;
    width: 100%;
}

.age-verification-logo {
    margin-bottom: 40px;
}

.age-verification-logo img {
    max-width: 200px;
    height: auto;
}

.age-verification-form h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 600;
    color: #333;
}

.age-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 12px;
}

.age-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.age-checkbox label {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    cursor: pointer;
}

.btn-enter {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    background-color: #e0e0e0;
    color: #999;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.btn-enter:not(:disabled) {
    background-color: #333;
    color: #fff;
    cursor: pointer;
}

.btn-enter:not(:disabled):hover {
    background-color: #000;
}

.btn-enter:disabled {
    cursor: not-allowed;
}

.age-disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
    text-align: center;
}

.age-disclaimer a {
    color: #ff9a56;
    text-decoration: none;
}

.age-disclaimer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .age-verification-split {
        flex-direction: column;
    }
    
    .age-verification-left {
        flex: 0 0 40%;
    }
    
    .age-verification-right {
        flex: 0 0 60%;
    }
}

@media (max-width: 768px) {
    .age-verification-left {
        flex: 0 0 30%;
    }
    
    .age-verification-right {
        flex: 0 0 70%;
        padding: 20px;
    }
    
    .age-verification-logo img {
        max-width: 150px;
    }
    
    .age-verification-form h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .age-checkbox label {
        font-size: 0.9rem;
    }
}

@media only screen and (max-width: 1444px) {
    .inventory-sec .inventory-card .inventory-item-title h3 {
        font-size: 13px;
    }
}

@media only screen and (max-width: 1368px) {
    .primary-nav {
        padding-left: 0;
    }

    .dispensaries-section .container-fluid {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 1290px) {
    .sliding-text-item {
        font-size: 12px;
    }

    .store-content {
        padding: 20px;
    }
}

@media only screen and (max-width: 500px) {
    .breadcrumb {
        padding: 30px 0;
    }

    .breadcrumb .container-fluid {
        padding: 0 20px;
    }

    .breadcrumb .sec-title h1 {
        font-size: 30px;
    }

    .breadcrumb .sec-title p {
        font-size: 12px;
    }

    .shop-toolbar input {
        width: 50%;
    }

    .shop-toolbar select {
        font-size: 12px;
    }

    .inventory-sec .sec-title h1 {
        font-size: 20px;
    }

    .flower-sec .flower-card .image {
       height: 200px;
    }

    .sec-about {
        padding: 30px 0;
    }

    .sec-about-odd .row {
        flex-direction: column-reverse;
    }

    .sec-blog {
        padding: 30px 0 0px;
    }

    .sec-blog .container-fluid {
        padding: 0 20px;
    }

    .sec-blog .blog-item h3 {
        font-size: 18px;
    }
}

.sec-about img {
    border-radius: 10px;
}

.features-sec {
    background-color: #f3f3f3;
    padding: 60px 0;
}

.featuresec {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #fff;
    padding: 20px 12px;
    border-radius: 10px;
}

.featuresec img {
    margin-bottom: 16px;
}