/* Global */
body {
    background-color: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* Navbar */
.navbar .nav-link {
    color: #ccc;
    margin: 0 10px;
    transition: 0.3s;
}

.navbar .nav-link:hover {
    color: #ffc107;
}

.search-box {
    width: 180px;
    border-radius: 20px;
    background: transparent;
    border: 1px solid #444;
    color: #fff;
}

.icon {
    color: #ccc;
    cursor: pointer;
    transition: 0.3s;
}

.icon:hover {
    color: #ffc107;
}


/* Hero Section */
.hero-section {
    padding: 80px 0;
}

/* Title */
.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.3;
    animation: fadeUp 1s ease;
}

.hero-title span {
    color: #ffc107;
}

/* Description */
.hero-desc {
    color: #aaa;
    margin: 20px 0;
    max-width: 500px;
}

/* Buttons */
.hero-btns a {
    margin-right: 15px;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-warning {
    background: #ffc107;
    border: none;
}

.btn-warning:hover {
    background: #e0a800;
}

.btn-outline-warning:hover {
    background: #ffc107;
    color: #000;
}

/* Image */
.hero-img {
    max-height: 550px;
    animation: fadeIn 1.5s ease;
}


/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .search-box {
        display: none;
    }
}


/* ================= PREMIUM SECTION ================= */
.premium-section {
    background: #000;
    padding: 80px 0;
    position: relative;
}

/* Offer */
.top-offer {
    color: #ccc;
    letter-spacing: 2px;
    margin-bottom: 50px;
    font-size: 14px;
}

/* GRID LAYOUT */
.premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 60px;
    align-items: center;
}

/* IMAGE BOX */
.img-box {
    position: relative;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* GOLD CORNER BORDER */
.img-box::before,
.img-box::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid #d4af37;
}

.img-box::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.img-box::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

/* TEXT BLOCK */
.text-wrapper,
.bottom-text {
    position: relative;
    padding-left: 20px;
}

.line {
    position: absolute;
    left: 0;
    top: 10px;
    width: 3px;
    height: 80px;
    background: #c70039;
}

/* TEXT STYLE */
.text-wrapper h2,
.bottom-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.text-wrapper p,
.bottom-text p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.text-wrapper a,
.bottom-text a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
}

/* POSITIONS */
.left-img {
    grid-column: 1;
    grid-row: 1;
}

.right-text {
    grid-column: 2;
    grid-row: 1;
}

.bottom-text {
    grid-column: 1;
    grid-row: 2;
}

.right-img {
    grid-column: 2;
    grid-row: 2;
}

/* HOVER EFFECT */
.img-box img {
    transition: 0.5s;
}

.img-box:hover img {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .premium-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .left-img,
    .right-text,
    .bottom-text,
    .right-img {
        grid-column: 1;
    }

    .line {
        height: 60px;
    }
}



/* AOS */

/* Smooth reveal enhancement */
[data-aos] {
    transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

/* Extra luxury hover */
.img-box {
    transition: transform 0.4s ease;
}

.img-box:hover {
    transform: translateY(-8px);
}

/* Subtle text animation */
.text-wrapper h2,
.bottom-text h2 {
    animation: textFade 1.2s ease;
}

@keyframes textFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================= CRAFT SECTION ================= */
.craft-section {
    position: relative;
    background: url('image/background.png') center/cover no-repeat;
    padding: 120px 0;
    color: #fff;
    overflow: hidden;
}

/* Dark Overlay */
.overlay {
    position: absolute;
    inset: 0;
 
}

/* Content above overlay */
.craft-section .container {
    position: relative;
    z-index: 2;
}

/* Heading */
.craft-title {
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: fadeDown 1s ease;
}

/* Subtitle */
.craft-subtitle {
    max-width: 700px;
    margin: auto;
    color: #ccc;
    font-size: 16px;
    line-height: 1.7;
    animation: fadeUp 1.2s ease;
}

/* Feature Items */
.craft-item {
    margin-top: 40px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

/* Stagger Animation */
.craft-item:nth-child(1) {
    animation-delay: 0.3s;
}
.craft-item:nth-child(2) {
    animation-delay: 0.6s;
}
.craft-item:nth-child(3) {
    animation-delay: 0.9s;
}

/* Feature Title */
.craft-item h4 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 20px;
}

/* Feature Text */
.craft-item p {
    color: #aaa;
    font-size: 14px;
}

/* Animations */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Glow Effect */
.craft-item:hover h4 {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .craft-title {
        font-size: 32px;
    }

    .craft-subtitle {
        font-size: 14px;
    }
}


/* SECTION */
.featured-section {
    background: #000;
    padding: 80px 0;
    color: #fff;
}

/* HEADER */
.section-title {
    font-size: 40px;
}

.section-subtitle {
    color: #aaa;
}

.view-btn {
    border: 1px solid #d4af37;
    padding: 10px 20px;
    color: #d4af37;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.view-btn:hover {
    background: #d4af37;
    color: #000;
}


/* ================= SECTION ================= */
.featured-section {
    background: #000;
    padding: 80px 0;
}

/* ================= SCROLL ROW ================= */
.product-scroll {
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

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

/* SNAP EFFECT */
.product-scroll {
    scroll-snap-type: x mandatory;
}

.product-item {
    min-width: 260px;
    max-width: 260px;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

/* ================= CARD ================= */
.product-card {
    background: linear-gradient(145deg, #0b0b0b, #111);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

/* HOVER EFFECT */
.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 40px rgba(212,175,55,0.25);
}

/* ================= IMAGE ================= */
.product-img {
    height: 300px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

/* ================= INFO ================= */
.product-info {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* TITLE ROW */
.title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

/* TITLE */
.product-info h5 {
    font-size: 15px;
    margin: 0;
    line-height: 1.4;
}

/* HEART */
.heart-icon {
    color: #d4af37;
    cursor: pointer;
    transition: 0.3s;
}

.heart-icon:hover {
    color: red;
    transform: scale(1.2);
}

/* ================= PRICE ================= */
.price {
    color: #d4af37;
    font-weight: 600;
    margin: 10px 0;
    font-size: 15px;
}

.price span {
    color: #777;
    text-decoration: line-through;
    font-size: 13px;
}

/* ================= BUTTONS ================= */
.btn-group {
    margin-top: auto;
    display: flex;
    gap: 10px;
}

/* BUY BUTTON */
.buy-btn {
    flex: 1;
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    color: #000;
    transition: 0.3s;
}

.buy-btn:hover {
    transform: scale(1.05);
}

/* CART BUTTON */
.cart-btn {
    width: 45px;
    border: 1px solid #d4af37;
    background: transparent;
    color: #d4af37;
    border-radius: 10px;
    transition: 0.3s;
}

.cart-btn:hover {
    background: #d4af37;
    color: #000;
}

/* ================= BADGE ================= */
.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 20px;
}

.sale {
    background: #ff3b3b;
}

.new {
    background: #d4af37;
    color: #000;
}

/* ================= PREMIUM GLOW ================= */
.product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    opacity: 0;
    transition: 0.4s;
    box-shadow: 0 0 40px rgba(212,175,55,0.15);
}

.product-card:hover::after {
    opacity: 1;
}

/* ================= ANIMATION ================= */
.product-card {
    animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {
    .product-item {
        min-width: 220px;
    }

    .product-img {
        height: 260px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .product-item {
        min-width: 180px;
    }

    .product-img {
        height: 220px;
    }

    .product-info h5 {
        font-size: 13px;
    }

    .price {
        font-size: 14px;
    }

    .buy-btn {
        padding: 8px;
        font-size: 13px;
    }
}


/* ================= PROMO SECTION ================= */
.promo-section {
    background: #000;
    padding: 80px 0;
}

/* CARD */
.promo-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    transition: 0.4s;
}

/* IMAGE */
.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* OVERLAY */
.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
}

/* CONTENT */
.promo-content {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    color: #fff;
    max-width: 70%;
}

/* TAG */
.tag {
    font-size: 12px;
    letter-spacing: 1px;
    color: #d4af37;
    display: block;
    margin-bottom: 10px;
}

.tag.red {
    background: red;
    color: #fff;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 5px;
}

/* TITLE */
.promo-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

/* TEXT */
.promo-content p {
    color: #ccc;
    margin-bottom: 15px;
}

/* BUTTONS */
.btn-gold {
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    padding: 10px 20px;
    border-radius: 8px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline {
    border: 1px solid #d4af37;
    padding: 10px 20px;
    border-radius: 8px;
    color: #d4af37;
    text-decoration: none;
}

/* HOVER EFFECT */
.promo-card:hover img {
    transform: scale(1.08);
}

.promo-card:hover {
    box-shadow: 0 10px 40px rgba(212,175,55,0.2);
}

/* ANIMATION */
.promo-card {
    animation: fadeUp 1s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .promo-card {
        height: 260px;
    }

    .promo-content h2 {
        font-size: 22px;
    }
}


/* ================= SECTION ================= */
.category-section {
    background: #000;
    padding: 80px 0;
    color: #fff;
}

/* HEADER */
.sub-title {
    color: #d4af37;
    font-size: 12px;
    letter-spacing: 2px;
}

.main-title {
    font-size: 36px;
}

.view-btn {
    border: 1px solid #d4af37;
    padding: 10px 20px;
    border-radius: 30px;
    color: #d4af37;
    text-decoration: none;
}

/* ================= GRID ================= */
.category-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 300px 250px;
    gap: 20px;
}

/* CARD */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

/* IMAGE */
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* CONTENT */
.content {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.content h3 {
    font-size: 20px;
}

.content p {
    font-size: 13px;
    color: #ccc;
}

.content span {
    color: #d4af37;
    font-size: 13px;
}

/* GRID POSITIONS */
.big {
    grid-row: span 2;
}

.wide {
    grid-column: span 2;
}

/* HOVER EFFECT */
.category-card:hover img {
    transform: scale(1.08);
}

.category-card:hover {
    box-shadow: 0 10px 40px rgba(212,175,55,0.2);
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .big,
    .wide {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .big,
    .wide {
        grid-column: span 1;
    }
}


/* SECTION */
.testimonial-section {
    background: #000;
    padding: 80px 0;
    color: #fff;
}

/* HEADER */
.sub-title {
    color: #d4af37;
    font-size: 12px;
    letter-spacing: 2px;
}

.main-title {
    font-size: 34px;
}

/* GOOGLE RATING */
.google-rating {
    margin-top: 10px;
    color: #d4af37;
    font-weight: 500;
}

/* CARD */
.review-card {
    background: #0b0b0b;
    padding: 20px;
    border-radius: 15px;
    text-align: left;
    height: 100%;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.05);
}

/* HOVER */
.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}

/* TEXT */
.review-card p {
    font-size: 14px;
    color: #ccc;
    min-height: 80px;
}

/* FOOTER */
.review-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.review-footer img {
    border-radius: 50%;
}

.review-footer h6 {
    margin: 0;
    font-size: 14px;
}

.review-footer small {
    color: #999;
}

/* ANIMATION */
.review-card {
    animation: fadeUp 0.8s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .main-title {
        font-size: 24px;
    }
}

/* CARD */
.review-card {
    background: #0b0b0b;
    padding: 20px;
    border-radius: 15px;
    text-align: left;
    height: 100%;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.05);
}

/* HOVER */
.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}

/* TOP ROW */
.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* GOOGLE LOGO */
.g-logo {
    width: 40px;
}

/* STARS */
.stars i {
    color: #ffc107;
    font-size: 14px;
}

/* TEXT */
.review-card p {
    font-size: 14px;
    color: #ccc;
    min-height: 80px;
}

/* FOOTER */
.review-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

/* AVATAR LETTER */
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #d4af37;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* NAME */
.review-footer h6 {
    margin: 0;
    font-size: 14px;
}

/* DATE */
.review-footer small {
    color: #999;
}