body {
    overflow-x: hidden;
}

.navbars {
    width: 100%; /* Ensure the navbar spans the full width */
    overflow: hidden;
    padding: 15px;
    color: white;
    margin-top: 50px;
    position: relative;
    background-color: black;
    overflow-x: hidden;
}

.navbars::before,
.navbars::after {
    content: '';
    display: block;
    height: 2px; /* Thickness of the line */
    background-color:#fad565; /* Color of the line */
    width: 100%;
    position: absolute;
    left: 0;
}

.navbars::before {
    top: 0; /* Line above the navbar */
}

.navbars::after {
    bottom: 0; /* Line below the navbar */
}

.horizontal-scroll {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 15s linear infinite;
    animation: scroll 15s linear infinite;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    white-space: nowrap;
}

li {
    display: inline-block;
    margin-right: 10px;
    font-size: 22px;
}

a {
    text-decoration: none;
    color: white;
}

.divider {
    color: white;
    font-size: 24px;
    margin-right: 10px;
}
@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.navbar ul li:nth-child(4) a {
    color: #fad565;
}

.row h2 {
    color: #fad565;
    text-align: center;
    font-size: 30px;

}
.row p{
	text-align: center;
    padding-bottom: 25px;
    color:white;
    font-size: large;
    margin-top: 10px;

}
.row{
    margin-top: 40px;
}

.giftcard-container {
    display: flex;
    background: #181614;
    color: #fff;
    padding: 0 0 40px 0;
    min-height: 60vh;
}
.giftcard-left {
    width: 50%;
    background: #fad565 !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
}
.giftcard-main-img {
    width: 100%;
    height: 980px;
    object-fit: cover;
    display: block;
}
.giftcard-details {
    background: #23201d;
    width: 100%;
    padding: 32px 32px 24px 32px;
}
.giftcard-title-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.giftcard-title-price h1 {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
}
.giftcard-price {
    font-size: 32px;
    color: #fad565 !important;
    font-weight: 600;
}
.giftcard-details hr {
    border: none;
    border-top: 1px solid #444;
    margin: 18px 0;
}
.giftcard-fromto p {
    font-size: 18px;
    font-weight: bold;
    margin: 8px 0 0 0;
    color: #fff !important;
}

.giftcard-right {
    width: 50%;
    background: #181614;
    padding: 40px 48px 0 48px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.giftcard-rating {
    font-size: 18px;
    margin-bottom: 8px;
}
.giftcard-rating .stars {
    color: #fad565;
    margin-right: 8px;
}
.giftcard-rating .reviews {
    color: #aaa;
    font-size: 15px;
}
.giftcard-price-range {
    font-size: 20px;
    color: #fff;
    margin-bottom: 24px;
}
.giftcard-image-choice h3,
.giftcard-amount h3,
.giftcard-delivery h3 {
    font-size: 22px;
    color: #fff !important;
    margin: 24px 0 10px 0;
}
.giftcard-image-select {
    margin-bottom: 18px;
}
.giftcard-thumb {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px dashed #bfa77a;
    object-fit: cover;
    margin: 0 0 10px 0;
}
.amount-options {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    max-width: 540px;      /* Reduced width for a more compact look */
    width: 100%;
    margin-left: 10px;   /* Add this line for left alignment */
    margin-right: auto;
    border: 1px solid #fad565;
    border-radius: 0;
    overflow: hidden;
}

.amount-options button,
.amount-options .custom-amount-wrap {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    border-radius: 0;
    margin: 0;
    border: none;
    height: 48px;          /* Reduced height */
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amount-options button {
    background: #23201d;
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    outline: none;
    box-shadow: none;
    border-right: 1px solid #fad565;
}

.amount-options button.active,
.amount-options button:hover {
    background: #fad565 !important;
    color: #181614 !important; /* Black text on gold background */
}

.amount-options button:last-child {
    border-right: none;
}

.custom-amount-wrap {
    flex-direction: column;
    justify-content: center;
    background: transparent;
    padding: 0 8px;
    border-right: none;
    border-left: 1px solid #fad565;
}

.custom-label {
    color: #181614; /* Black text for label */
    font-size: 13px;      /* Reduced font size */
    margin-bottom: 0;
    margin-top: 0;
    font-family: 'Poppins', sans-serif;
    pointer-events: none;
    text-align: left;
    width: 100%;
}

#custom-amount {
    background: transparent;
    border: none;
    border-bottom: 2px solid #fad565;
    color: #fff;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 0;
    margin: 0;
    outline: none;
    width: 100%;
    height: 20px;
    text-align: center; /* Center the input text */
    transition: border-color 0.2s;
    /* Remove number input arrows for Chrome, Safari, Edge, Opera */
}
#custom-amount::-webkit-outer-spin-button,
#custom-amount::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.giftcard-delivery {
    margin-bottom: 24px;
}
.delivery-section {
    margin-bottom: 18px;
}
.delivery-title {
    color: #fad565;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    margin-top: 10px;
}
.giftcard-right label {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 15px;
}
.giftcard-right input,
.giftcard-right textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fad565;
    color: #fff;
    font-size: 16px;
    padding: 8px 0;
    margin-bottom: 16px;
    outline: none;
    resize: none;
}
.giftcard-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;

}
.quantity {
    display: flex;
    align-items: center;
    background: #181614;
    border: 1px solid #444;
}
.quantity button {
    background: #181614;
    color: #fff;
    border: none;
    font-size: 22px;
    width: 38px;
    height: 38px;
    cursor: pointer;
    transition: background 0.2s;
}
.quantity button:hover {
    background: #fad565 !important;
    color: #181614 !important;
}
.quantity span {
    width: 38px;
    text-align: center;
    font-size: 18px;
    display: inline-block;
}
.add-to-cart {
    background: #fad565 !important;
    color:black;
    border: none;
    padding: 12px 38px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0;
    transition: background 0.2s, color 0.2s;
}
.add-to-cart:hover {
    background:#fad565;
    color: black;
}
.add-to-wishlist {
    background: #fad565 !important;
    color: #fff;
    border: none;
    padding: 12px 38px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 0;
    margin-bottom: 18px;
    transition: background 0.2s, color 0.2s;
}
.add-to-wishlist:hover {
    background: #fff;
    color: #fad565;
}
.giftcard-category {
    font-size: 15px;
    color: #fff;
}
.category-link {
    color: #fad565;
    text-decoration: none;
    margin-left: 4px;
}

.reviews-section {
    margin: 60px 0 0 0;
    background: #000;
    color: #fff;
    padding: 0 40px;
}
.reviews-title {
    font-size: 28px;
    margin-bottom: 8px;
    color: #fff;
    border-bottom: 3px solid #bfa77a;
    display: inline-block;
    padding-bottom: 2px;
}
.reviews-divider {
    border: none;
    border-top: 1.5px solid #444;
    margin: 0 0 24px 0;
}
.review-list {
    margin-bottom: 40px;
}
.review-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
}
.review-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 18px;
    background: #222;
}
.review-content {
    flex: 1;
}
.review-rating .stars {
    color: #fad565;
    font-size: 18px;
}
.review-meta {
    font-size: 16px;
    color: #fff;
    margin: 2px 0 6px 0;
}
.review-meta em {
    font-style: italic;
    color: #fad565;
}
.review-text {
    font-size: 16px;
    color: #fff;
    margin-bottom: 4px;
}

.add-review-section {
    background: #000;
    color: #fff;
    padding: 0 40px 40px 40px;
}
.add-review-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: #fff;
}
.review-note {
    font-size: 15px;
    color: #fff;
    margin-bottom: 18px;
}
.review-form {
    width: 100%;
}
.review-form-row {
    display: flex;
    gap: 40px;
}
.review-form-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.review-form-col label {
    margin: 18px 0 6px 0;
    font-size: 16px;
    color: #fff;
}
.review-form-col input,
.review-form-col textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #fad565;
    color: #fff;
    font-size: 16px;
    padding: 8px 0;
    margin-bottom: 12px;
    outline: none;
    resize: none;
}
.review-form-col textarea {
    min-height: 120px;
}
.review-checkbox {
    display: flex;
    align-items: center;
    margin: 12px 0 18px 0;
    font-size: 14px;
}
.review-checkbox input[type="checkbox"] {
    accent-color: #fad565;
    margin-right: 8px;
}
.review-submit {
    background: #fad565;
    color: #fff;
    border: none;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0;
    margin-top: 10px;
    transition: background 0.2s, color 0.2s;
}
.review-submit:hover {
    background: #fff;
    color: #fad565;
}
.stars-input {
    color: #fad565;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    display: inline-block;
}
.related-products-row {
    display: flex;
    justify-content: flex-start;
    gap: 80px;
    padding: 40px 0 60px 0;
    width: 90%;
    margin: 0 auto;
}
.related-product-card {
    background: none;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.related-product-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 18px;
}
.related-product-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 8px;
    text-align: center;
    font-weight: 500;
}
.related-product-price {
    font-size: 18px;
    color: #fad565 !important;
    margin-bottom: 24px;
    text-align: center;
}
.related-product-btn {
    background: #fad565;
    color: #fff;
    border: none;
    padding: 16px 38px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0;
    transition: background 0.2s, color 0.2s;
    margin-top: 8px;
}
.related-product-btn:hover {
    background: #fff;
    color: #fad565;
}
.add-to-cart-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #fad565 !important;
    color: #23201e !important;
    border: 1px solid #fad565;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 35px 13px !important;
    border-radius: 0;
    transition: color 0.3s;
    cursor: pointer;
    display: inline-block;
    outline: none;
    text-decoration: none !important;
}

.add-to-cart-btn::before,
.add-to-cart-btn::after {
    content: '';
    position: absolute;
    top: 0;
    width: 58%;
    height: 100%;
    background: #23201e;
    z-index: 2;
    pointer-events: none;
    opacity: 1;
    transition: transform 0.5s cubic-bezier(.77,0,.18,1);
    transform: skewX(-18deg);
}

.add-to-cart-btn::before {
    left: -8px;
    transform: translateX(-100%) skewX(-18deg);
}

.add-to-cart-btn::after {
     right: -8px; /* Move slightly right */
    transform: translateX(100%) skewX(-18deg);
}

.add-to-cart-btn:hover::before,
.add-to-cart-btn:focus::before {
   transform: translateX(0) skewX(-18deg);
}

.add-to-cart-btn:hover::after,
.add-to-cart-btn:focus::after {
    transform: translateX(0) skewX(-18deg);
}

.add-to-cart-btn span {
    position: relative;
    z-index: 3;
    color: #111;
    background: transparent !important;
}

.add-to-cart-btn:hover,
.add-to-cart-btn:focus {
    color: #23201e !important;
}

.add-to-cart-btn:hover span,
.add-to-cart-btn:focus span {
    color: #fff !important;
    z-index: 3;
}
.breadcrumb-home {
    color: #fff !important;
    text-decoration: none !important;
}
@media (max-width: 900px) {
    .giftcard-container {
        flex-direction: column;
    }
    .giftcard-left, .giftcard-right {
        width: 100%;
        padding: 0 10px;
    }
    .giftcard-main-img {
        height: 260px;
    }
    .giftcard-right {
        padding: 24px 10px 0 10px;
    }
    .reviews-section, .add-review-section {
        padding: 0 10px 20px 10px;
    }
    .review-form_row {
        flex-direction: column;
        gap: 0;
    }
    .related-products-row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .related-product-card {
        width: 90%;
    }
    .amount-options {
        flex-direction: column;
    }
    .amount-options button,
    .custom-amount-wrap {
        min-width: unset;
        width: 100%;
        border-left: 1px solid #fad565;
        border-right: 1px solid #fad565;
    }
    .custom-amount-wrap {
        border-left: 1px solid #fad565;
    }
}



