.gfw-whisky-landing,
.gfw-whisky-landing *,
.gfw-products-grid,
.gfw-products-grid *,
.gfw-category-products-grid,
.gfw-category-products-grid *,
.gfw-tasting-notes,
.gfw-tasting-notes *,
.gfw-awards,
.gfw-awards * {
    box-sizing: border-box;
}

.gfw-whisky-landing {
    width: 100%;
    margin: 0;
    padding: 0;
}

.gfw-panel {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 310px;
    background: var(--gfw-panel-bg, #ddd5c6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px 24px;
}

.gfw-panel-inner {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    display: grid;
    grid-template-columns: minmax(180px, 37%) minmax(260px, 1fr);
    gap: clamp(34px, 8vw, 100px);
    align-items: center;
}

.gfw-style-image-right .gfw-panel-inner {
    grid-template-columns: minmax(260px, 1fr) minmax(180px, 37%);
}

.gfw-style-image-right .gfw-panel-image-wrap {
    order: 2;
}

.gfw-style-image-right .gfw-panel-copy {
    order: 1;
}

.gfw-style-centered .gfw-panel-inner {
    grid-template-columns: 1fr;
    max-width: 620px;
    gap: 22px;
    text-align: center;
}

.gfw-style-centered .gfw-panel-image-wrap,
.gfw-style-centered .gfw-panel-copy {
    justify-content: center;
    text-align: center;
}

.gfw-panel-image-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 190px;
}

.gfw-panel-image {
    display: block;
    width: auto;
    max-width: calc(100% * var(--gfw-image-scale, 1));
    max-height: calc(245px * var(--gfw-image-scale, 1));
    object-fit: contain;
}

.gfw-panel-placeholder {
    width: 145px;
    height: 230px;
    border: 1px dashed rgba(66, 55, 42, 0.28);
    border-radius: 10px;
    opacity: 0.6;
}

.gfw-panel-copy {
    position: relative;
    z-index: 2;
    max-width: 430px;
    padding: clamp(22px, 3vw, 34px) 0;
    text-align: center;
    justify-self: center;
}

.gfw-panel-copy::before,
.gfw-panel-copy::after {
    content: "";
    position: absolute;
    width: calc(var(--gfw-dashed-line-extent, 180) * 1%);
    max-width: 90vw;
    border-top: 1px dashed rgba(66, 55, 42, 0.22);
    z-index: 1;
    pointer-events: none;
}

.gfw-panel-copy::before {
    top: 0;
}

.gfw-panel-copy::after {
    bottom: 0;
}

.gfw-panel-copy > * {
    position: relative;
    z-index: 2;
}

.gfw-style-image-left .gfw-panel-copy::before,
.gfw-style-image-left .gfw-panel-copy::after {
    right: 0;
}

.gfw-style-image-right .gfw-panel-copy::before,
.gfw-style-image-right .gfw-panel-copy::after {
    left: 0;
}

.gfw-style-centered .gfw-panel-copy::before,
.gfw-style-centered .gfw-panel-copy::after {
    left: 50%;
    transform: translateX(-50%);
}

.gfw-panel-copy h2 {
    margin: 0 0 14px;
    padding: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #2f2b25;
}

.gfw-panel-description,
.gfw-panel-description p {
    margin: 0;
    color: #423d35;
    font-size: clamp(13px, 1.4vw, 15px);
    line-height: 1.65;
    font-weight: 400;
}

.gfw-separator {
    display: block;
    width: 88px;
    height: 1px;
    margin: 20px auto 13px;
    background: var(--gfw-separator-colour, #b35c4d);
}

.gfw-panel-link {
    display: inline-block;
    color: #221f1b;
    text-decoration: none !important;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    border: 0;
    box-shadow: none;
}

.gfw-panel-link:hover,
.gfw-panel-link:focus {
    color: #221f1b;
    text-decoration: none !important;
    outline-offset: 4px;
}

.gfw-products-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(var(--gfw-product-columns, 3), minmax(0, 1fr));
    gap: clamp(24px, 4vw, 52px);
    align-items: stretch;
}

.gfw-products-columns-1 {
    --gfw-product-columns: 1;
}

.gfw-products-columns-2 {
    --gfw-product-columns: 2;
}

.gfw-products-columns-3 {
    --gfw-product-columns: 3;
}

.gfw-products-columns-4 {
    --gfw-product-columns: 4;
}

.gfw-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    min-height: 100%;
    padding: 28px 22px;
    background: rgba(221, 213, 198, var(--gfw-product-bg-opacity, 1));
}

.gfw-product-card-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 230px;
    margin-bottom: 20px;
    text-decoration: none !important;
}

.gfw-product-card-image img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 260px;
    object-fit: contain;
}

.gfw-product-card-placeholder {
    display: block;
    width: 120px;
    height: 210px;
    border: 1px dashed rgba(66, 55, 42, 0.28);
    border-radius: 8px;
}

.gfw-product-card-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.gfw-product-card-age {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    line-height: 1.15;
    color: #2f2b25;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gfw-product-card-age span {
    color: #bd2230;
    font-size: 34px;
    font-weight: 700;
}

.gfw-product-card h3 {
    margin: 0;
    padding: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.gfw-product-card h3 a,
.gfw-product-card h3 a:hover,
.gfw-product-card h3 a:focus {
    color: #2f2b25;
    text-decoration: none !important;
}

.gfw-product-card-subheading {
    max-width: 310px;
    font-size: 13px;
    line-height: 1.45;
    text-transform: uppercase;
    color: #2f2b25;
    letter-spacing: 0.035em;
}

.gfw-product-card-description {
    max-width: 330px;
    font-size: 13px;
    line-height: 1.65;
    color: #423d35;
}

.gfw-product-card-link {
    display: inline-block;
    margin-top: 6px;
    color: #221f1b;
    text-decoration: none !important;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.gfw-single-product-image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

.gfw-awards {
    width: min(var(--gfw-awards-max-width, 746px), 100%);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: var(--gfw-awards-gap, 42px);
    row-gap: var(--gfw-awards-row-gap, 36px);
    background: transparent;
}

.gfw-award-image {
    flex: 0 0 var(--gfw-awards-item-width, 155px);
    max-width: var(--gfw-awards-item-width, 155px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gfw-award-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.gfw-tasting-notes {
    width: 100%;
    text-align: center;
}

.gfw-tasting-notes h2 {
    margin: 0 0 28px;
    padding: 0;
    color: #2f2b25;
    font-size: 28px;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.gfw-tasting-note {
    max-width: 520px;
    margin: 0 auto 20px;
}

.gfw-tasting-note h3 {
    margin: 0 0 6px;
    padding: 0;
    color: #2f2b25;
    font-size: 13px;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gfw-tasting-note div,
.gfw-tasting-note p {
    margin: 0;
    color: #423d35;
    font-size: 13px;
    line-height: 1.55;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

@media (max-width: 900px) {
    .gfw-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gfw-awards {
        width: min(var(--gfw-awards-tablet-max-width, 484px), 100%);
        column-gap: var(--gfw-awards-tablet-gap, 32px);
    }

    .gfw-award-image {
        flex-basis: var(--gfw-awards-tablet-item-width, 140px);
        max-width: var(--gfw-awards-tablet-item-width, 140px);
    }
}

@media (max-width: 767px) {
    .gfw-panel {
        min-height: auto;
        padding: 34px 18px;
    }

    .gfw-panel-inner,
    .gfw-style-image-right .gfw-panel-inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gfw-style-image-right .gfw-panel-image-wrap,
    .gfw-style-image-right .gfw-panel-copy {
        order: initial;
    }

    .gfw-panel-image-wrap {
        min-height: auto;
    }

    .gfw-panel-image {
        max-height: calc(210px * var(--gfw-image-scale, 1));
    }

    .gfw-panel-copy {
        max-width: 100%;
        padding: 22px 0;
    }

    .gfw-panel-copy::before,
    .gfw-panel-copy::after,
    .gfw-style-image-left .gfw-panel-copy::before,
    .gfw-style-image-left .gfw-panel-copy::after,
    .gfw-style-image-right .gfw-panel-copy::before,
    .gfw-style-image-right .gfw-panel-copy::after {
        left: 50%;
        right: auto;
        width: 100%;
        transform: translateX(-50%);
    }

    .gfw-products-grid {
        grid-template-columns: 1fr;
    }

    .gfw-product-card-image {
        min-height: auto;
    }
}

@media (max-width: 520px) {
    .gfw-awards {
        width: min(var(--gfw-awards-mobile-max-width, 258px), 100%);
        column-gap: var(--gfw-awards-mobile-gap, 22px);
        row-gap: clamp(18px, 7vw, var(--gfw-awards-row-gap, 36px));
    }

    .gfw-award-image {
        flex-basis: var(--gfw-awards-mobile-item-width, 118px);
        max-width: var(--gfw-awards-mobile-item-width, 118px);
    }
}

/* Category/range product grid shown before the detailed product page. */
.gfw-category-products-grid {
    --gfw-category-grid-width: 760px;
    --gfw-category-grid-width-tablet: 520px;
    --gfw-category-grid-width-mobile: 220px;
    --gfw-category-card-width: 190px;
    --gfw-category-card-min-height: 185px;
    --gfw-category-card-padding-y: 12px;
    --gfw-category-card-padding-x: 10px;
    --gfw-category-column-gap: 58px;
    --gfw-category-row-gap: 58px;
    --gfw-category-image-max-width: 100%;
    --gfw-category-image-max-height: 170px;
    --gfw-category-copy-gap: 6px;
    --gfw-category-copy-margin-top: 9px;
    --gfw-category-copy-min-height: 42px;
    --gfw-category-underline-width: 34px;
    --gfw-category-underline-margin-top: 6px;
    --gfw-category-age-font-size: 15px;
    --gfw-category-label-font-size: 9px;
    --gfw-category-line-height: 1.05;
    width: min(var(--gfw-category-grid-width, 760px), 100%);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    column-gap: clamp(22px, 5vw, var(--gfw-category-column-gap, 58px));
    row-gap: clamp(34px, 6vw, var(--gfw-category-row-gap, 58px));
    align-items: flex-start;
    justify-content: center;
}

.gfw-category-product-card {
    width: var(--gfw-category-card-width, 190px);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
}

.gfw-category-product-image {
    width: 100%;
    min-height: var(--gfw-category-card-min-height, 185px);
    padding: var(--gfw-category-card-padding-y, 12px) var(--gfw-category-card-padding-x, 10px) var(--gfw-category-card-padding-x, 10px);
    background: rgba(221, 213, 198, var(--gfw-product-bg-opacity, 1));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-decoration: none !important;
    transition: none;
    overflow: visible;
}

.gfw-category-product-image:hover,
.gfw-category-product-image:focus {
    text-decoration: none !important;
}

.gfw-category-product-image img {
    display: block;
    width: auto;
    max-width: var(--gfw-category-image-max-width, 100%);
    max-height: var(--gfw-category-image-max-height, 170px);
    height: auto;
    object-fit: contain;
}

.gfw-category-product-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: var(--gfw-category-copy-gap, 6px);
    margin-top: var(--gfw-category-copy-margin-top, 9px);
    min-height: var(--gfw-category-copy-min-height, 42px);
}

.gfw-category-product-age,
.gfw-category-product-title a {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: #2f2b25;
    text-decoration: none !important;
    text-transform: uppercase;
    line-height: var(--gfw-category-line-height, 1.05);
}

.gfw-category-product-age::after,
.gfw-category-product-title a::after {
    content: "";
    display: block;
    width: var(--gfw-category-underline-width, 34px);
    height: 1px;
    margin-top: var(--gfw-category-underline-margin-top, 6px);
    background: #bd2230;
}

.gfw-category-product-age-number {
    color: #bd2230;
    font-family: Georgia, "Times New Roman", serif;
    font-size: var(--gfw-category-age-font-size, 15px);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: var(--gfw-category-line-height, 1.05);
}

.gfw-category-product-age-label {
    color: #2f2b25;
    font-size: var(--gfw-category-label-font-size, 9px);
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: var(--gfw-category-line-height, 1.05);
}

.gfw-category-product-title {
    margin: 0;
    padding: 0;
    font-size: var(--gfw-category-label-font-size, 10px);
    line-height: var(--gfw-category-line-height, 1.15);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gfw-category-product-title a:hover,
.gfw-category-product-title a:focus,
.gfw-category-product-age:hover,
.gfw-category-product-age:focus {
    color: #2f2b25;
    text-decoration: none !important;
}

@media (max-width: 900px) {
    .gfw-category-products-grid {
        width: min(var(--gfw-category-grid-width-tablet, 520px), 100%);
    }
}

@media (max-width: 520px) {
    .gfw-category-products-grid {
        width: min(var(--gfw-category-grid-width-mobile, 220px), 100%);
    }
}
