 /* Product Detail Section Styles */
 .product-detail-section {
    background-color: var(--white);
    position: relative;
}

.product-images-wrapper {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.product-image-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.product-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image-1 {
    top: 0;
    left: 10%;
    z-index: 3;
}

.product-image-2 {
    top: 20%;
    right: 10%;
    z-index: 2;
}

.product-image-3 {
    bottom: 0;
    left: 15%;
    z-index: 1;
}

/* Rope Outline SVG */
.rope-outline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.rope-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawRope 3s ease-in-out forwards;
}

.rope-dot {
    opacity: 0;
    animation: fadeInDot 0.5s ease-in-out 2.5s forwards;
}

@keyframes drawRope {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInDot {
    to {
        opacity: 1;
    }
}

/* Product Content Styles */
.product-content-wrapper {
    padding: 40px 0 40px 40px;
}

.product-headline {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.headline-line {
    width: 40px;
    height: 2px;
    background-color: #000;
    display: inline-block;
}

.headline-text {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "DM Sans", sans-serif;
}

.product-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--header);
    margin-bottom: 30px;
    font-family: "Funnel Display", sans-serif;
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 35px;
    font-family: "DM Sans", sans-serif;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .product-title {
        font-size: 42px;
    }
    
    .product-image-circle {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 991px) {
    .product-images-wrapper {
        min-height: 500px;
        margin-bottom: 50px;
    }

    .product-content-wrapper {
        padding: 0;
        text-align: center;
    }

    .product-headline {
        justify-content: center;
    }

    .product-image-1 {
        left: 5%;
    }

    .product-image-2 {
        right: 5%;
    }

    .product-image-3 {
        left: 10%;
    }
}

@media (max-width: 767px) {
    .product-title {
        font-size: 32px;
    }

    .product-image-circle {
        width: 200px;
        height: 200px;
    }

    .product-images-wrapper {
        min-height: 400px;
    }  
}

@media (max-width: 575px) {
    .product-image-circle {
        width: 160px;
        height: 160px;
        border-width: 5px;
    }

    .product-title {
        font-size: 28px;
    }

    .product-description {
        font-size: 15px;
    }
}

/* Product Gallery & Info Section Styles */
.product-gallery-info-section {
    background-color: var(--bg);
    padding: 80px 0;
}

.product-gallery-wrapper {
    margin-bottom: 60px;
}

.product-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
    height: 400px;
}

.product-gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-gallery-item:hover img {
    transform: scale(1.1);
}

/* Product Info Tabs Styles */
.product-info-tabs-wrapper {
    background: var(--white);
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.product-tabs {
    border-bottom: 2px solid var(--border);
    background: var(--white);
}

.tab-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.tab-nav .nav-item {
    flex: 1;
    min-width: 200px;
}

.tab-nav .nav-link {
    width: 100%;
    padding: 20px 30px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "DM Sans", sans-serif;
    position: relative;
}

.tab-nav .nav-link:hover {
    color: #fff;
    background: #000;
}

.tab-nav .nav-link.active {
    color: #000;
    border-bottom-color: #000;
    background: transparent;
}

.tab-content-wrapper {
    padding: 40px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-info-content {
    color: var(--text);
    line-height: 1.8;
}

.product-info-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text);
    font-family: "DM Sans", sans-serif;
}

.product-info-content p:last-child {
    margin-bottom: 0;
}

.product-info-content h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--header);
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: "Funnel Display", sans-serif;
}

.product-info-content h4:first-child {
    margin-top: 0;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.info-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 16px;
    color: var(--text);
    font-family: "DM Sans", sans-serif;
}

.info-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--theme);
    font-weight: bold;
    font-size: 18px;
}

.info-list li:last-child {
    margin-bottom: 0;
}

/* Technical Specs Table */
.technical-specs {
    margin-top: 20px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--border);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.spec-label {
    padding: 15px 20px 15px 0;
    font-weight: 600;
    color: var(--header);
    font-size: 16px;
    width: 40%;
    vertical-align: top;
    font-family: "DM Sans", sans-serif;
}

.spec-value {
    padding: 15px 0;
    color: var(--text);
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
}

/* Responsive Styles for Gallery & Tabs */
@media (max-width: 991px) {
    .product-gallery-info-section {
        padding: 60px 0;
    }

    .product-gallery-item {
        height: 350px;
        margin-bottom: 30px;
    }

    .tab-content-wrapper {
        padding: 30px 25px;
    }

    .tab-nav .nav-item {
        min-width: 150px;
    }

    .tab-nav .nav-link {
        padding: 18px 20px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .product-gallery-wrapper {
        margin-bottom: 40px;
    }

    .product-gallery-item {
        height: 300px;
    }

    .tab-nav {
        flex-direction: column;
    }

    .tab-nav .nav-item {
        width: 100%;
        min-width: 100%;
    }

    .tab-nav .nav-link {
        text-align: left;
        border-bottom: 1px solid var(--border);
        border-left: 3px solid transparent;
    }

    .tab-nav .nav-link.active {
        border-bottom-color: var(--border);
        border-left-color: #000;
    }

    .tab-content-wrapper {
        padding: 25px 20px;
    }

    .spec-label {
        width: 35%;
        padding: 12px 15px 12px 0;
        font-size: 15px;
    }

    .spec-value {
        padding: 12px 0;
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .product-gallery-item {
        height: 250px;
    }

    .product-info-content p {
        font-size: 15px;
    }

    .product-info-content h4 {
        font-size: 20px;
    }

    .info-list li {
        font-size: 15px;
        padding: 8px 0 8px 20px;
    }
}

/* Feature Grid Styles */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.feature-card {
    background-color: #000;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100px; 
}
.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card p {
    color: white;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    text-transform: capitalize;
    margin-top: 25px;
}

/* Responsive Styles for Feature Grid */
@media (max-width: 1199px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 991px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .feature-card {
        padding: 25px 15px;
        min-height: 160px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    .feature-icon img {
    width: 50px; 
}

    .feature-card p {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .feature-card {
        padding: 20px 12px;
        min-height: 140px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }

    .feature-icon img {
    width: 40px; 
}
    .feature-card p {
        font-size: 12px;
        line-height: 1.3;
    }
}

@media (max-width: 400px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        min-height: 120px;
        padding: 20px 15px;
    }
}

.why-choose-us {
        display: inline-block;
        padding: 7px 15px;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        border-radius: 50px;
             background: linear-gradient(
    90deg,
    #000000 0%,
    #1a1a1a 55%,
    #3a3a3a 100%
  );
        margin-bottom: 10px;
    }
    .why-choose-us:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(43, 43, 43, 0.45);
    transition: 0.3s ease;
    }