.d-none{
    display: none;
}

.hero-section .elementor-slide-button{
    padding:15px 16px 40px 16px !important;
}

.hero-section .elementor-slide-button{
    position: relative;
}

.hero-section .elementor-slide-button::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:20px;
    width:10px;
    height:10px;
    border-right:2px solid #fff;
    border-bottom:2px solid #fff;
    transform:translateX(-50%) rotate(45deg);
    animation:arrowMove 1.5s infinite;
}

@keyframes arrowMove{
    0%{
        transform:translate(-50%,0) rotate(45deg);
        opacity:1;
    }
    50%{
        transform:translate(-50%,8px) rotate(45deg);
        opacity:0.6;
    }
    100%{
        transform:translate(-50%,0) rotate(45deg);
        opacity:1;
    }
}

.image-slider .swiper-wrapper {
	height: 600px
}

.menu-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Blogs Content Section */
.blogs-content-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.blogs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blogs-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.blogs-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 32px;
    color: #333333;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blogs-section-description {
    font-family: 'Verdana', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #666666;
    margin-top: 1rem;
}

/* Blog Accordion */
.blogs-accordion {
    margin-top: 32px;
}

.blog-accordion-item {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 24px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/*.blog-accordion-item:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}*/

.blog-accordion-item.active {
    border-color: #A11A1F;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-accordion-header {
    background-color: #000 !important;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.blog-accordion-header:hover {
    background-color: #1a1a1a !important;
}

.blog-accordion-header:focus {
    outline: none;
    box-shadow: none;
    background-color: transparent;
}

.blog-accordion-item.active .blog-accordion-header {
    background-color: #A11A1F !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-accordion-year {
    font-weight: 500;
    font-size: 24px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-accordion-count {
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    margin-left: 16px;
}

.blog-accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.blog-accordion-icon svg {
    width: 100%;
    height: 100%;
}

.blog-accordion-item.active .blog-accordion-icon {
    transform: rotate(180deg);
}

.blog-accordion-content {
    display: none;
    padding: 0 32px;
    background-color: #ffffff;
}

.blog-accordion-item.active .blog-accordion-content {
    display: block;
    padding: 32px;
}

/* Blogs Grid */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

/* Blog Card */
.blog-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /*border: 1px solid rgba(0, 0, 0, 0.05);*/
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.blog-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.blog-card-image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.1);
}

.blog-card-date {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #A11A1F;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 4px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.blog-date-day {
    display: block;
    font-size: 24px;
    line-height: 1;
}

.blog-date-month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.blog-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.4;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #A11A1F;
}

.blog-card-excerpt {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 16px;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #666;
}

.blog-card-author,
.blog-card-read-time {
    font-size: 14px;
}

.blog-card-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #A11A1F;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    display: inline-block;
}

.blog-card-link:hover {
    color: #751317;
}

.blog-load-more-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.load-more-posts {
    font-family: 'Poppins', sans-serif;
    background-color: #A11A1F;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 500;
}

.load-more-posts:hover, .load-more-posts:focus{
    background-color: #751317;
    color: #ffffff;
}

/*Blog detail Page*/
.blog-featured-img{
    max-height: 500px;
}

.blog-detail-body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #66666;
}

.blog-detail-body h1 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #000000;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.blog-detail-body h2 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #000000;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.blog-detail-body h3 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #000000;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.blog-detail-body h4 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #000000;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

.blog-detail-body h5 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #000000;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0.2px;
    line-height: 1.5;
}

.blog-detail-body h6 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0.2px;
    line-height: 1.5;
}

.blog-detail-body p {
    margin-bottom: 24px;
}

.blog-detail-body ul, .blog-detail-body ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.blog-detail-body img{
    width: auto;
    border-radius: 12px;
    overflow: hidden;
}

.blog-detail-body .alignnone, .blog-detail-body .alignleft, .blog-detail-body .alignright, .blog-detail-body .aligncenter{
    border-radius: 12px !important;
}


/*About Page*/
.why-choose-item .why-choose-number {
    transform: translate(-50%, -50%);
    width: clamp(60px, 3.646vw, 70px);
    height: clamp(60px, 3.646vw, 70px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-item:hover {
    transform: translateY(-5px);
}

/*Team Memeber list Shortcode*/

.team-content-section {
    padding: 3.333vw 1.667vw;
    background-color: #ffffff;
}

.team-section-alt {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-section-header {
    text-align: center;
    margin-bottom: 2.5vw;
}

.team-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.667vw;
    color: #000000;
    margin-bottom: 16px;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: #A11A1F;
    margin: 0 auto 24px;
    border-radius: 2px;
}

.team-section-description {
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #555555;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 375px);
    gap: 1.667vw;
    justify-content: center;
}

.team-member-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-member-photo-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f0f0f0;
}

.team-member-photo {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/*.team-member-card:hover .team-member-photo-wrapper img {
    transform: scale(1.1);
}*/

.team-member-info {
    padding: 1.667vw 1.25vw;
}

.team-member-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #000000;
    margin-bottom: 8px;
}

.team-member-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #A11A1F;
    margin: 0;
}

/*Specials Page*/
.special-card:hover {
    transform: translateY(-10px);;
}

.special-image-wrapper .special-image{
    height: 280px !important;
}

/*.special-image-wrapper .special-image img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: transform 0.3s ease;
}*/

.special-card:hover .special-image {
    transform: scale(1.1);
}

.special-image a {
    display: block;
    width: 100%;
    height: 100%;
}

/*Event List Page*/
.events-header-text {
    font-size: 32px;
    line-height: 1.3em;
    text-align: center;
    margin: 15px 0 15px 0 !important;
    color: #000000;
    font-weight: 700 !important;
}

.tribe-events .datepicker .month.current{color :white !important}

.title-underline {
    width: 245px;
    height: 3px;
    background: #a11a1f;
    margin: 0 auto 15px !important;
    border-radius: 2px;
}

/*Event Detail Page*/
.event-detail-form .elementor-field-group-event_name,.event-detail-form .elementor-field-group-event_date_start_time{
    pointer-events: none;
}

.events-single .tribe-events-before-html {
    display: none;
}

/*Shop Page*/
.pa_size {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-bottom: 10px;
}

.product-info{
    font-size: 20px;
    font-weight: 500;
    color: #666;
}

.product-info a{
    font-size: 20px;
    font-weight: 500;
    color: #A11A1F;
}

.shop-products-grid .woocommerce ul.products li.product a img{
    height: 230px;
    object-fit: cover;
}

.woocommerce span.onsale{
    background-color: #A11A1F !important;
}

.comox-privacy-policy h2 {
  font-size: 24px;
  color: #000;
}

.comox-privacy-policy h3 {
  font-size: 18px;
  margin: 20px 0 8px;
}

.comox-privacy-policy p,
.comox-privacy-policy li {
  margin-bottom: 12px;
}

.comox-privacy-policy ol {
  padding-left: 18px;
  margin-bottom: 18px;
}

.comox-privacy-policy a {
  color: #A11A1F;
  font-weight: 600;
}

.comox-privacy-policy a:hover{
     color: #751317;
}

.comox-privacy-policy strong {
  color: #000;
}

.tax-notice{
    color: #A11A1F;
    font-weight: 600;
}

.wc-login-btn {
    background-color: rgb(161, 26, 31);
    color: #fff;
    padding: 10px 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: 0.3s ease;
    text-align: center;
    font-size: 16px;
}

.wc-login-btn:hover {
    /*background-color: rgb(117, 19, 23);*/
    color: #fff;
}

.tls-qr-code-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.tls-qr-expiry-note{
    margin-bottom: 24px;
    padding: 12px 16px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
}
.tls-qr-expiry-note p{
    margin: 0;
}

.tls-qr-access-wrapper{
    margin: 15px;
}

.tls-qr-access-denied{
    max-width:600px;
    margin:32px auto;
    padding: clamp(16px, 1.667vw, 32px);
    text-align:center;
    border:1px solid #ccc;
    background:#f9f9f9;
    font-size: 16px;
}

.tls-qr-access-denied p{
    margin: 0;
}

.tls-qr-expired-message{
    display:none;
    margin-top:16px;
    color:#A11A1F;
    font-weight:600;
}

/*Age Verfication Page*/
.liquor-age-verification h2.age-gate__headline {
    font-size: 28px;
    margin-top: 22px;
}

.liquor-age-verification p.age-gate__subheadline {
    font-size: 18px;
    color: #666;
}

.liquor-age-verification button.age-gate__button {
    background-color: #A11A1F;
    border-radius: 5px;
    padding: 12px 20px;
}


.liquor-age-verification .age-gate {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    border-radius: 10px;
}

.liquor-age-verification .age-gate__additional-information p {
    color: #A11A1F;
    font-size: 14px;
    font-weight:500;
}

.pickup-address a{
    color: #a11a1f;
    font-weight: 600;
    text-decoration: none;
}

@media(max-width: 1024px){
	.menu-logo {
        position: unset;
        left: unset;
        transform: unset;
    }
    .main-header-menu {
        width: min-content;
    }

    .wc-login-btn {
        font-size: 14px;
    }
}

@media(max-width: 768px){

    /*Blogs List Page*/
    .blogs-content-section {
        padding: 32px 16px;
    }

    .blogs-section-title {
        font-size: 24px;
    }

    .blog-accordion-header {
        padding: 16px;
        flex-wrap: wrap;
    }

    .blog-accordion-year {
        font-size: 20px;
    }

    .blog-accordion-count {
        font-size: 14px;
        margin-left: 8px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-accordion-item.active .blog-accordion-content {
        padding: 20px;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-card-title{
        font-size: 20px;
    }

    /*Blog Detail Page*/
    .blog-detail-body h1 {
        font-size: 32px;
    }

    .blog-detail-body h2 {
        font-size: 28px;
    }

    .blog-detail-body h3 {
        font-size: 22px;
    }

    .blog-detail-body h4 {
        font-size: 20px;
    }

    .blog-detail-body h5 {
        font-size: 18px;
    }

    .blog-detail-body h6 {
        font-size: 16px;
    }

    /*Team Page*/
    .team-content-section {
        padding: 48px 24px;
    }

    .team-section-header {
        margin-bottom: 40px;
    }

    .team-section-title {
        font-size: 28px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, 260px);
        gap: 15px;
        justify-content: center;
    }

    .team-member-photo-wrapper {
        height: 250px;
    }

    .team-member-info {
        padding: 24px;
    }

    .team-member-name {
        font-size: 22px;
    }

    .team-member-title {
        font-size: 16px;
    }

    .comox-privacy-policy h2 {
       font-size: 20px;
     }
  
     .comox-privacy-policy li {
       font-size: 15px;
     }

    .liquor-age-verification .age-gate {
        padding: 35px 25px;
    }   

    .events-header-text {
        font-size: 28px;
    }

}

@media(max-width: 480px){

    /*Team Page*/

    .team-content-section {
        padding: 32px 16px;
    }

    .team-section-title {
        font-size: 24px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /*.team-member-photo-wrapper {
        height: 220px;
    }*/

    .team-member-info {
        padding: 20px;
    }

    .team-member-name {
        font-size: 20px;
    }

    /*Shop Page*/
    .shop-products-grid .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .shop-products-grid .woocommerce .woocommerce-ordering {
        margin: 0 0 1em;
    }

    .shop-products-grid .woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering {
        float: left;
    }

    .liquor-age-verification .age-gate {
        padding: 30px 20px;
    }

    .liquor-age-verification p.age-gate__subheadline {
        font-size: 16px;
    }

    .events-header-text {
        font-size: 26px;
    }

}